]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(modconf): remove erroneous :endif in ftplugin
authorzeertzjq <zeertzjq@outlook.com>
Fri, 20 Sep 2024 19:47:19 +0000 (21:47 +0200)
committerChristian Brabandt <cb@256bit.org>
Fri, 20 Sep 2024 19:47:19 +0000 (21:47 +0200)
regression introduced in f86568f91848ece0c5da

closes: #15704

Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/ftplugin/modconf.vim

index df1c787e709fc03188cd4bc070ff803798957081..68ce69a446ff8c5eabff40cae6714dff36b121ef 100644 (file)
@@ -1,7 +1,8 @@
 " Vim filetype plugin file
 " Language:             modules.conf(5) configuration file
+" Maintainer:           This runtime file is looking for a new maintainer.
 " Previous Maintainer:  Nikolai Weibull <now@bitwi.se>
-" Latest Revision:      2024-09-19 (simplify keywordprg #15696)
+" Latest Revision:      2024-09-20 (remove erroneous endif)
 
 if exists("b:did_ftplugin")
   finish
@@ -23,7 +24,6 @@ if has('unix') && executable('less') && exists(':terminal') == 2
   setlocal keywordprg=:ModconfKeywordPrg
   let b:undo_ftplugin .= '| setlocal keywordprg< iskeyword< | sil! delc -buffer ModconfKeywordPrg'
 endif
-endif
 
 let &cpo = s:cpo_save
 unlet s:cpo_save