fix(indent): remove unused variable for enable indent

This commit is contained in:
Wuelner Martínez
2022-08-05 15:43:46 -06:00
parent 5f60161141
commit 7948891119
2 changed files with 6 additions and 9 deletions

View File

@@ -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).
## [1.0.1] - 2022-08-05
### Fixed
- Removed unused variable for enable indentation.
## [1.0.0] - 2022-08-05
- Initial release

View File

@@ -13,15 +13,6 @@ if exists('b:did_indent')
finish
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_style1 = 'inc'