diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-01-01 15:00:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-01 15:00:39 +0100 |
commit | c4942880be0521673548c48bf61c1eac6bd37036 (patch) | |
tree | 62fa779cea100f27a97035c68dbee0646390af4f /runtime/indent/vue.vim | |
parent | 83e8723864e24d9bf542e779d9612d3ffd014dbf (diff) | |
download | rneovim-c4942880be0521673548c48bf61c1eac6bd37036.tar.gz rneovim-c4942880be0521673548c48bf61c1eac6bd37036.tar.bz2 rneovim-c4942880be0521673548c48bf61c1eac6bd37036.zip |
vim-patch:partial:f1dcd14fc5d4 (#21602)
Update runtime files
https://github.com/vim/vim/commit/f1dcd14fc5d4370476cd82895a4479ca2d252e54
missing autocmd blocks and getscriptinfo()
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'runtime/indent/vue.vim')
-rw-r--r-- | runtime/indent/vue.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/indent/vue.vim b/runtime/indent/vue.vim index 7ff623b3d1..f6fe350a8f 100644 --- a/runtime/indent/vue.vim +++ b/runtime/indent/vue.vim @@ -1,12 +1,14 @@ " Vim indent file placeholder " Language: Vue " Maintainer: None, please volunteer if you have a real Vue indent script +" Last Change: 2022 Dec 24 " Only load this indent file when no other was loaded. if exists("b:did_indent") finish endif -let b:did_indent = 1 +" don't set b:did_indent, otherwise html indenting won't be activated +" let b:did_indent = 1 " Html comes closest runtime! indent/html.vim |