diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-23 20:52:29 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-27 09:21:28 -0400 |
commit | 233292b0ba9fb5d60ef7b2973c3a778e9c12be0c (patch) | |
tree | 108a9452a847baefbb2e90e913fb9b46b0fd3459 /runtime/ftplugin | |
parent | f0bf853f41ac4ad765bf279c331669d8c9d1e5c5 (diff) | |
download | rneovim-233292b0ba9fb5d60ef7b2973c3a778e9c12be0c.tar.gz rneovim-233292b0ba9fb5d60ef7b2973c3a778e9c12be0c.tar.bz2 rneovim-233292b0ba9fb5d60ef7b2973c3a778e9c12be0c.zip |
vim-patch:96f45c0b6fc9
Update runtime files
https://github.com/vim/vim/commit/96f45c0b6fc9e9d404e6805593ed1e0e6795e470
Omit de.po changes.
Same reason as before: too much and I don't understand the language.
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/meson.vim | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/runtime/ftplugin/meson.vim b/runtime/ftplugin/meson.vim new file mode 100644 index 0000000000..e432ebf196 --- /dev/null +++ b/runtime/ftplugin/meson.vim @@ -0,0 +1,19 @@ +" Vim filetype plugin file +" Language: meson +" License: VIM License +" Original Author: Laurent Pinchart <laurent.pinchart@ideasonboard.com> +" Last Change: 2018 Nov 27 + +if exists("b:did_ftplugin") | finish | endif +let b:did_ftplugin = 1 +let s:keepcpo= &cpo +set cpo&vim + +setlocal commentstring=#\ %s +setlocal comments=:# + +setlocal shiftwidth=2 +setlocal softtabstop=2 + +let &cpo = s:keepcpo +unlet s:keepcpo |