mirror of
https://github.com/wuelnerdotexe/vim-astro.git
synced 2025-12-10 02:51:52 +08:00
fix(indent): remove unused variable for enable indent
This commit is contained in:
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [1.0.1] - 2022-08-05
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Removed unused variable for enable indentation.
|
||||||
|
|
||||||
## [1.0.0] - 2022-08-05
|
## [1.0.0] - 2022-08-05
|
||||||
|
|
||||||
- Initial release
|
- Initial release
|
||||||
|
|||||||
@@ -13,15 +13,6 @@ if exists('b:did_indent')
|
|||||||
finish
|
finish
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Astro indent variables are initialized.
|
|
||||||
let g:astro_indent = get(g:, 'astro_indent', 'disable')
|
|
||||||
|
|
||||||
" Only load this indent file (experimental) when is explicit enable.
|
|
||||||
" TODO: When the indentation is stable, this option will be removed.
|
|
||||||
if g:astro_indent != 'enable'
|
|
||||||
finish
|
|
||||||
endif
|
|
||||||
|
|
||||||
let b:html_indent_script1 = 'inc'
|
let b:html_indent_script1 = 'inc'
|
||||||
let b:html_indent_style1 = 'inc'
|
let b:html_indent_style1 = 'inc'
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user