diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2014-12-19 17:08:39 -0500 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2014-12-19 17:08:39 -0500 |
| commit | e922a7427371b5869d1b1623c368f365bad3fedb (patch) | |
| tree | 49fd95ece32c13407d65f4a845f873201e389b13 /runtime/ftplugin/ada.vim | |
| parent | 189427efd7b905c00f155f5f9ce5123eca599e44 (diff) | |
| parent | a62fe49d3caa40b8a6efb6528cce725f4dffa78a (diff) | |
| download | rneovim-e922a7427371b5869d1b1623c368f365bad3fedb.tar.gz rneovim-e922a7427371b5869d1b1623c368f365bad3fedb.tar.bz2 rneovim-e922a7427371b5869d1b1623c368f365bad3fedb.zip | |
Merge pull request #1648 from Pyrohh/amiga-vms-cleanup
Amiga/VMS cleanup
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") || |