diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2022-04-27 17:48:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-27 17:48:35 +0200 |
| commit | 521e91e1c420bd5c94c35908181dbba81e58dd0f (patch) | |
| tree | eaa4be5323cc89048f71f4a61539d24c0647ca9e /runtime/ftplugin/elixir.vim | |
| parent | ee85d8d7566042df0b988ae28bbbaa7a16bbb5a9 (diff) | |
| download | rneovim-521e91e1c420bd5c94c35908181dbba81e58dd0f.tar.gz rneovim-521e91e1c420bd5c94c35908181dbba81e58dd0f.tar.bz2 rneovim-521e91e1c420bd5c94c35908181dbba81e58dd0f.zip | |
vim-patch:ce001a337e28 (#18287)
Update runtime files
https://github.com/vim/vim/commit/ce001a337e28fa368f40ac6422835d730fb8ebb1
also add `vimStdPlugin` keywords missing from previous updates
Diffstat (limited to 'runtime/ftplugin/elixir.vim')
| -rw-r--r-- | runtime/ftplugin/elixir.vim | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/runtime/ftplugin/elixir.vim b/runtime/ftplugin/elixir.vim new file mode 100644 index 0000000000..3b38051d08 --- /dev/null +++ b/runtime/ftplugin/elixir.vim @@ -0,0 +1,11 @@ +" Elixir filetype plugin +" Language: Elixir +" Maintainer: Mitchell Hanberg <vimNOSPAM@mitchellhanberg.com> +" Last Change: 2022 Apr 20 + +if exists("b:did_ftplugin") + finish +endif +let b:did_ftplugin = 1 + +setlocal commentstring=#\ %s |