diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2024-01-16 23:08:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-16 23:08:41 +0000 |
commit | aa5819f5a5e634904ea1ca4d25700c0cbbba5ccc (patch) | |
tree | 4a70812925545fbd80d6b55bae6387e18a264d3e /runtime/ftplugin | |
parent | 3973a5e40505422c7ac42692eaecc1ff84f89e7f (diff) | |
download | rneovim-aa5819f5a5e634904ea1ca4d25700c0cbbba5ccc.tar.gz rneovim-aa5819f5a5e634904ea1ca4d25700c0cbbba5ccc.tar.bz2 rneovim-aa5819f5a5e634904ea1ca4d25700c0cbbba5ccc.zip |
vim-patch:211211052d04 (#27048)
runtime(odin): include ftplugin, syntax and indent script (vim/vim#13867)
https://github.com/vim/vim/commit/211211052d0426394cbd5f42f3f3f78a64822e2a
Translate the files from Vim9 script to legacy Vim script. Notably:
- Prefer case-matching comparisons where needed.
- Save and restore `&cpo`.
- Make the functions script-local. (Pretty easy to use these in expr options now
since Vim 9.0 anyways)
Add a note after the header for each file stating that they're manually
translated.
Co-authored-by: Maxim Kim <habamax@gmail.com>
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/odin.vim | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/runtime/ftplugin/odin.vim b/runtime/ftplugin/odin.vim new file mode 100644 index 0000000000..c50fea65a3 --- /dev/null +++ b/runtime/ftplugin/odin.vim @@ -0,0 +1,26 @@ +" Vim filetype plugin file +" Language: Odin +" Maintainer: Maxim Kim <habamax@gmail.com> +" Website: https://github.com/habamax/vim-odin +" Last Change: 2024-01-15 +" +" This file has been manually translated from Vim9 script. + +if exists("b:did_ftplugin") + finish +endif +let b:did_ftplugin = 1 + +let s:cpo_save = &cpo +set cpo&vim + +let b:undo_ftplugin = 'setlocal commentstring<' + \ .. '| setlocal comments<' + \ .. '| setlocal suffixesadd<' + +setlocal suffixesadd=.odin +setlocal commentstring=//%s +setlocal comments=s1:/*,mb:*,ex:*/,:// + +let &cpo = s:cpo_save +unlet s:cpo_save |