diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-09-28 12:48:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-28 12:48:36 +0200 |
commit | 9ca313fb968448011aae0509e6552c52b9f8aa8c (patch) | |
tree | 0c3c1484d213250dfb2f36718793a646937b1b53 /runtime/indent/vue.vim | |
parent | 35e2c4a2edd28f72c48c70530c5486365c2502a4 (diff) | |
download | rneovim-9ca313fb968448011aae0509e6552c52b9f8aa8c.tar.gz rneovim-9ca313fb968448011aae0509e6552c52b9f8aa8c.tar.bz2 rneovim-9ca313fb968448011aae0509e6552c52b9f8aa8c.zip |
vim-patch:9fbdbb814f4a (#20376)
Update runtime files
https://github.com/vim/vim/commit/9fbdbb814f4ad67a14979aba4a6a49800c2f1a99
Skip ftplugin/vim.vim (vim9script change)
Drop indent/vim.vim and autoload/dist/vimindent.vim (vim9script rewrite)
Diffstat (limited to 'runtime/indent/vue.vim')
-rw-r--r-- | runtime/indent/vue.vim | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/runtime/indent/vue.vim b/runtime/indent/vue.vim new file mode 100644 index 0000000000..7ff623b3d1 --- /dev/null +++ b/runtime/indent/vue.vim @@ -0,0 +1,12 @@ +" Vim indent file placeholder +" Language: Vue +" Maintainer: None, please volunteer if you have a real Vue indent script + +" Only load this indent file when no other was loaded. +if exists("b:did_indent") + finish +endif +let b:did_indent = 1 + +" Html comes closest +runtime! indent/html.vim |