From 988754e017b91e053c5979bc1052818408ea3dd0 Mon Sep 17 00:00:00 2001 From: Robertus Chris Date: Sat, 16 Sep 2023 05:51:47 +0700 Subject: [PATCH] fix: text found after endfunction The argument after endfunction can only be (from `:h :endfunction`): - | command command to execute next - \n command command to execute next - " comment always ignored - anything else ignored, warning given when 'verbose' is non-zero --- autoload/editorconfig_core/ini.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/editorconfig_core/ini.vim b/autoload/editorconfig_core/ini.vim index 55d2dee4..c10c0366 100644 --- a/autoload/editorconfig_core/ini.vim +++ b/autoload/editorconfig_core/ini.vim @@ -190,7 +190,7 @@ function! s:parse(config_filename, target_filename, lines) endif return {'root': l:is_root, 'options': l:options} -endfunction! +endfunction " }}}1 " === Helpers =========================================================== {{{1