diff options
author | Enno <Konfekt@users.noreply.github.com> | 2024-09-18 13:20:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-18 19:20:14 +0800 |
commit | 0ba388847417b8aed469976acf94f9633cb03f15 (patch) | |
tree | 62988c70c3979252e05a88692b277085e7ac6c90 | |
parent | ff85e54939b0aca34a779a2b6381d09db1858b29 (diff) | |
download | rneovim-0ba388847417b8aed469976acf94f9633cb03f15.tar.gz rneovim-0ba388847417b8aed469976acf94f9633cb03f15.tar.bz2 rneovim-0ba388847417b8aed469976acf94f9633cb03f15.zip |
vim-patch:5036e69: runtime(systemd): allow for overriding systemd ftplugin settings (vim/vim#13373) (#30414)
closes: vim/vim#13357
https://github.com/vim/vim/commit/5036e698520b2c39e4df5738f026a68ba2e76fef
-rw-r--r-- | runtime/ftplugin/systemd.vim | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/ftplugin/systemd.vim b/runtime/ftplugin/systemd.vim index 8bcacdd381..d268bfee7a 100644 --- a/runtime/ftplugin/systemd.vim +++ b/runtime/ftplugin/systemd.vim @@ -3,10 +3,11 @@ " Keyword Lookup Support: Enno Nagel <enno.nagel+vim@gmail.com> " Latest Revision: 2023-10-07 -if !exists('b:did_ftplugin') - " Looks a lot like dosini files. - runtime! ftplugin/dosini.vim +if exists("b:did_ftplugin") + finish endif +" Looks a lot like dosini files. +runtime! ftplugin/dosini.vim if has('unix') && executable('less') if !has('gui_running') |