From 521e91e1c420bd5c94c35908181dbba81e58dd0f Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Wed, 27 Apr 2022 17:48:35 +0200 Subject: vim-patch:ce001a337e28 (#18287) Update runtime files https://github.com/vim/vim/commit/ce001a337e28fa368f40ac6422835d730fb8ebb1 also add `vimStdPlugin` keywords missing from previous updates --- runtime/ftplugin/elixir.vim | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 runtime/ftplugin/elixir.vim (limited to 'runtime/ftplugin/elixir.vim') 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 +" Last Change: 2022 Apr 20 + +if exists("b:did_ftplugin") + finish +endif +let b:did_ftplugin = 1 + +setlocal commentstring=#\ %s -- cgit