Searched +refs:ada +refs:else (Results 1 - 12 of 12) sorted by relevance

/macosx-10.10.1/vim-55/runtime/ftplugin/
H A Dada.vim4 " $Id: ada.vim 887 2008-07-08 14:29:01Z krischik $
12 " $HeadURL: https://gnuada.svn.sourceforge.net/svnroot/gnuada/trunk/tools/vim/ftplugin/ada.vim $
22 " Help Page: ft-ada-plugin
26 " Similarly allows <Ctrl-N> matching of full-length ada entities from tags.
64 nnoremap <unique> <buffer> <C-]> :call ada#Jump_Tag ('', 'tjump')<cr>
67 nnoremap <unique> <buffer> g<C-]> :call ada#Jump_Tag ('','stjump')<cr>
71 nnoremap <unique> <buffer> <C-]> :call ada#List_Tag ()<cr>
74 nnoremap <unique> <buffer> g<C-]> :call ada#List_Tag ()<cr>
81 setlocal completefunc=ada#User_Complete
86 inoremap <unique> <buffer> <C-N> <C-R>=ada#Completio
[all...]
/macosx-10.10.1/vim-55/runtime/autoload/
H A Dada.vim4 " $Id: ada.vim 887 2008-07-08 14:29:01Z krischik $
13 " $HeadURL: https://gnuada.svn.sourceforge.net/svnroot/gnuada/trunk/tools/vim/autoload/ada.vim $
26 " Help Page: ft-ada-functions
35 let g:ada#DotWordRegex = '\a\w*\(\_s*\.\_s*\a\w*\)*'
36 let g:ada#WordRegex = '\a\w*'
37 let g:ada#Comment = "\\v^(\"[^\"]*\"|'.'|[^\"']){-}\\zs\\s*--.*"
38 let g:ada#Keywords = []
40 " Section: g:ada#Keywords {{{1
44 for Item in ['abort', 'else', 'new', 'return', 'abs', 'elsif', 'not', 'reverse', 'abstract', 'end', 'null', 'accept', 'entry', 'select', 'access', 'exception', 'of', 'separate', 'aliased', 'exit', 'or', 'subtype', 'all', 'others', 'synchronized', 'and', 'for', 'out', 'array', 'function', 'overriding', 'tagged', 'at', 'task', 'generic', 'package', 'terminate', 'begin', 'goto', 'pragma', 'then', 'body', 'private', 'type', 'if', 'procedure', 'case', 'in', 'protected', 'until', 'constant', 'interface', 'use', 'is', 'raise', 'declare', 'range', 'when', 'delay', 'limited', 'record', 'while', 'delta', 'loop', 'rem', 'with', 'digits', 'renames', 'do', 'mod', 'requeue', 'xor']
45 let g:ada#Keyword
[all...]
H A Dadacomplete.vim19 " Help Page: ft-ada-omni
32 return ada#User_Complete (a:findstart, a:base)
33 else
38 call ada#User_Complete (a:findstart, a:base)
59 else
64 let l:Info .= 'Of type : ' . g:ada#Ctags_Kinds[l:Tag_Item['kind']][1] . "\n"
79 else
H A Dgnat.vim68 else
78 "call ada#Switch_Session (
81 "else
82 "call ada#Switch_Session (
86 "else
87 "call ada#Switch_Session ('')
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dayacc.vim6 " Comment: Replaced sourcing c.vim file by ada.vim and rename yacc*
19 so <sfile>:p:h/ada.vim
20 else
21 runtime! syntax/ada.vim
58 else
H A Daflex.vim7 " Comment: Replaced sourcing c.vim file by ada.vim and rename lex*
20 so <sfile>:p:h/ada.vim
21 else
22 runtime! syntax/ada.vim
79 else
H A Dada.vim4 " $Id: ada.vim 887 2008-07-08 14:29:01Z krischik $
14 " $HeadURL: https://gnuada.svn.sourceforge.net/svnroot/gnuada/trunk/tools/vim/syntax/ada.vim $
23 " Help Page: help ft-ada-syntax
36 let b:current_syntax = "ada"
49 for b:Item in g:ada#Keywords
52 " It's possible to redefine the standard exceptions as something else,
81 syntax match adaOperator "\<or\s\+else\>"
101 else
198 syntax match adaConditional "\<else\>"
231 else
[all...]
/macosx-10.10.1/vim-55/runtime/indent/
H A Dada.vim4 " $Id: ada.vim 887 2008-07-08 14:29:01Z krischik $
13 " $HeadURL: https://gnuada.svn.sourceforge.net/svnroot/gnuada/trunk/tools/vim/indent/ada.vim $
18 " 19.09.2007 NO g: missing before ada#Comment
44 let s:AdaBlockStart = '^\s*\(if\>\|while\>\|else\>\|elsif\>\|loop\>\|for\>.*\<\(loop\|use\)\>\|declare\>\|begin\>\|type\>.*\<is\>[^;]*$\|\(type\>.*\)\=\<record\>\|procedure\>\|function\>\|accept\>\|do\>\|task\>\|package\>\|project\>\|then\>\|when\>\|is\>\)'
45 else
46 let s:AdaBlockStart = '^\s*\(if\>\|while\>\|else\>\|elsif\>\|loop\>\|for\>.*\<\(loop\|use\)\>\|declare\>\|begin\>\|type\>.*\<is\>[^;]*$\|\(type\>.*\)\=\<record\>\|procedure\>\|function\>\|accept\>\|do\>\|task\>\|package\>\|then\>\|when\>\|is\>\)'
63 let line = substitute( getline(lnum), g:ada#Comment, '', '' )
77 let line = substitute( getline(lnum), g:ada#Comment, '', '' )
110 else
121 let line = substitute( line, g:ada#Commen
[all...]
/macosx-10.10.1/emacs-93/emacs/etc/
H A Dsk-refcard.tex10 % Specify how many you want here. Nothing else needs to be changed.
94 % make \bye not \outer so that the \def\bye in the \else clause below
105 column\if 1\ncolumns\else s\fi\space per page]}
122 \else %2 or 3 columns uses prereduced size
153 \else \if 3\ncolumns
156 \else
167 \else\if a\abc
171 \else
180 \if a\abc \else\null\vfill\eject\fi
181 \if a\abc \else\nul
[all...]
/macosx-10.10.1/vim-55/runtime/
H A Dfiletype.vim57 else
61 else
93 au BufNewFile,BufRead *.adb,*.ads,*.ada setf ada
95 au BufNewFile,BufRead *.gpr,*.ada_m,*.adc setf ada
96 else
97 au BufNewFile,BufRead *.gpr setf ada
145 \ else |
155 \ else |
182 else
[all...]
H A Dmakemenu.vim37 else
58 SynMenu AB.Ada:ada
H A Dsynmenu.vim18 else
26 else
45 an 50.10.170 &Syntax.AB.Ada :cal SetSyn("ada")<CR>

Completed in 81 milliseconds