diff options
Diffstat (limited to 'runtime/syntax/ada.vim')
-rw-r--r-- | runtime/syntax/ada.vim | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/runtime/syntax/ada.vim b/runtime/syntax/ada.vim index f31770077..8d76fb8f4 100644 --- a/runtime/syntax/ada.vim +++ b/runtime/syntax/ada.vim @@ -9,9 +9,9 @@ " Contributors: Preben Randhol. " $Author$ " $Date$ -" Version: 4.2 +" Version: 4.6 " $Revision$ -" $HeadURL: https://svn.sourceforge.net/svnroot/gnuada/trunk/tools/vim/syntax/ada.vim $ +" $HeadURL: https://gnuada.svn.sourceforge.net/svnroot/gnuada/trunk/tools/vim/syntax/ada.vim $ " http://www.dwheeler.com/vim " History: 24.05.2006 MK Unified Headers " 26.05.2006 MK ' should not be in iskeyword. @@ -38,8 +38,6 @@ let b:current_syntax = "ada" " Section: Ada is entirely case-insensitive. {{{1 " syntax case ignore -setlocal nosmartcase -setlocal ignorecase " Section: Highlighting commands {{{1 " @@ -98,7 +96,8 @@ syntax keyword adaSpecial <> " if exists("g:ada_rainbow_color") syntax match adaSpecial "[:;.,]" - runtime plugin/Rainbow_Parenthsis.vim + call rainbow_parenthsis#LoadRound () + call rainbow_parenthsis#Activate () else syntax match adaSpecial "[:;().,]" endif @@ -159,7 +158,7 @@ endif " Section: end {{{1 " Unless special ("end loop", "end if", etc.), "end" marks the end of a " begin, package, task etc. Assiging it to adaEnd. -syntax match adaEnd "\<end\>" +syntax match adaEnd /\<end\>/ syntax keyword adaPreproc pragma @@ -346,9 +345,6 @@ else endif -" Section: formatoptions {{{1 -" -setlocal formatoptions+=ron " Section: sync {{{1 " |