diff options
author | Michael Reed <m.reed@mykolab.com> | 2014-12-09 22:48:34 -0500 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2014-12-19 15:28:49 -0500 |
commit | 6f50fd6c35234313e2423cc0ac45223fcea58ba9 (patch) | |
tree | c1f9aef00f6e2032a64408f880ba2256fd722a5b /runtime/ftplugin/ada.vim | |
parent | 189427efd7b905c00f155f5f9ce5123eca599e44 (diff) | |
download | rneovim-6f50fd6c35234313e2423cc0ac45223fcea58ba9.tar.gz rneovim-6f50fd6c35234313e2423cc0ac45223fcea58ba9.tar.bz2 rneovim-6f50fd6c35234313e2423cc0ac45223fcea58ba9.zip |
Remove VMS remnants
Diffstat (limited to 'runtime/ftplugin/ada.vim')
-rw-r--r-- | runtime/ftplugin/ada.vim | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/runtime/ftplugin/ada.vim b/runtime/ftplugin/ada.vim index 0809e7b206..1f2d690b95 100644 --- a/runtime/ftplugin/ada.vim +++ b/runtime/ftplugin/ada.vim @@ -119,11 +119,7 @@ endif " Section: Compiler {{{1 " if ! exists("g:ada_default_compiler") - if has("vms") - let g:ada_default_compiler = 'decada' - else - let g:ada_default_compiler = 'gnat' - endif + let g:ada_default_compiler = 'gnat' endif if ! exists("current_compiler") || |