From 862abb3895e1becb8a25f750665af2fa5dea7fff Mon Sep 17 00:00:00 2001 From: John Whitley Date: Wed, 28 Jan 2015 12:31:44 -0800 Subject: [PATCH] Do not hardcode a default indentation Change 2a8f0e094d3fae2ef081db873af3c3835f271280 hardcoded a value for s:emmet_settings.variables.indentation, which incorrectly overrides the logic in emmet#getIndentation that respects a user's indentation settings in the absence of an explicit emmet indentation config setting. --- autoload/emmet.vim | 1 - 1 file changed, 1 deletion(-) diff --git a/autoload/emmet.vim b/autoload/emmet.vim index cb386f1..1296018 100644 --- a/autoload/emmet.vim +++ b/autoload/emmet.vim @@ -929,7 +929,6 @@ let s:emmet_settings = { \ 'lang': "en", \ 'locale': "en-US", \ 'charset': "UTF-8", -\ 'indentation': "\t", \ 'newline': "\n", \ 'use_selection': 0, \ },