From 79488911193e93086d5f3daea59f046a848ef619 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wuelner=20Mart=C3=ADnez?= Date: Fri, 5 Aug 2022 15:43:46 -0600 Subject: [PATCH] fix(indent): remove unused variable for enable indent --- CHANGELOG.md | 6 ++++++ indent/astro.vim | 9 --------- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 593b779..c2a4ab6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/indent/astro.vim b/indent/astro.vim index 4399003..ab3bd7b 100644 --- a/indent/astro.vim +++ b/indent/astro.vim @@ -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'