diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-11-07 01:20:56 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-11-07 01:27:14 +0100 |
commit | 78223bc97f6c7b4376ff9b8708e2bec4cea92f6d (patch) | |
tree | 3598fcc399fdad4ffd68be4a08527b4d5803f9a6 /runtime/ftplugin | |
parent | 60179b8a3be5ffeb5543660c45a71d99634259ee (diff) | |
download | rneovim-78223bc97f6c7b4376ff9b8708e2bec4cea92f6d.tar.gz rneovim-78223bc97f6c7b4376ff9b8708e2bec4cea92f6d.tar.bz2 rneovim-78223bc97f6c7b4376ff9b8708e2bec4cea92f6d.zip |
vim-patch:b4d6c3ea4a59
Update runtime files.
https://github.com/vim/vim/commit/b4d6c3ea4a59c6d8d4e0e52120596866f0edd510
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/sbt.vim | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/runtime/ftplugin/sbt.vim b/runtime/ftplugin/sbt.vim new file mode 100644 index 0000000000..309d30e503 --- /dev/null +++ b/runtime/ftplugin/sbt.vim @@ -0,0 +1,15 @@ +" Vim filetype plugin file +" Language: sbt +" Maintainer: Steven Dobay <stevendobay at protonmail.com> +" License: Same as Vim +" Last Change: 2017.04.30 +" ---------------------------------------------------------------------------- + +if exists('b:did_ftplugin') || &cp + finish +endif + +let b:did_ftplugin = 1 + +runtime! ftplugin/scala.vim + |