| /vim-8.2.3635/runtime/indent/ |
| H A D | lua.vim | 15 " To make Vim call GetLuaIndent() when it finds '\s*end' or '\s*until' 17 setlocal indentkeys+=0=end,0=until 49 " an "end" or "until" is not present on the same line. 50 …synIDattr(synID(prevlnum, midx + 1, 1), "name") != "luaComment" && prevline !~ '\<end\>\|\<until\>' 55 " Subtract a 'shiftwidth' on end, else, elseif, until and '}' 57 let midx = match(getline(v:lnum), '^\s*\%(end\>\|else\>\|elseif\>\|until\>\|}\)')
|
| H A D | rpl.vim | 14 setlocal indentkeys+==~end,=~case,=~if,=~then,=~else,=~do,=~until,=~while,=~repeat,=~select,=~defau… 31 " case, select, default, do, until, while, repeat, for, start 34 …elseif prevstat =~? '\<\(if\|iferr\|then\|else\|elseif\|select\|case\|do\|until\|while\|repeat\|fo… 38 " Subtract a shiftwidth from then, else, elseif, end, until, repeat, next, 41 if line =~? '^\s*\(then\|else\|elseif\|until\|repeat\|next\|step\|default\|end\)\>'
|
| H A D | hamster.vim | 20 setlocal indentkeys+==~do,=~until,=~while,=~repeat,=~for,=~loop 39 " case, select, default, do, until, while, for, start 44 " Subtract a shiftwidth from else, elseif, end(if|while|for), until 46 if line =~? '^\s*\(else\|elseif\|loop\|until\|end\%(if\|while\|for\|sub\)\)\>'
|
| H A D | pascal.vim | 17 setlocal indentkeys+==end;,==const,==type,==var,==begin,==repeat,==until,==for 112 if this_codeline !~ '^\s*until\>' 171 " Lines starting with "until" or "end". This rule must be overridden 174 if this_codeline =~ '^\s*\(end\|until\)\>'
|
| H A D | eiffel.vim | 23 setlocal indentkeys+==end,=else,=ensure,=require,=check,=loop,=until 32 …= '^\s*\(deferred\|class\|feature\|creation\|inherit\|loop\|from\|across\|until\|if\|else\|elseif\… 33 let s:outdent = '^\s*\(else\|invariant\|variant\|do\|require\|until\|loop\|local\)\>'
|
| H A D | awk.vim | 115 " balance, search backwards until cumulative brace balance becomes zero, 118 " until that's not the case anymore. Take indent of one line down. 205 " Get previous relevant line. Search back until a line is that is no
|
| H A D | ruby.vim | 88 \ '\|while\|until\|else\|elsif\|case\|when\|unless\|begin\|ensure\|rescue' . 91 \ '\<\%(if\|for\|while\|until\|case\|unless\|begin\):\@!\>' 98 "let s:end_start_regex = '\%(^\|[^.]\)\<\%(module\|class\|def\|if\|for\|while\|until\|case\|unless\… 102 \ '\<\%(module\|class\|if\|for\|while\|until\|case\|unless\|begin' . 115 \ ' && getline(".") =~ "^\\s*\\<\\(while\\|until\\|for\\):\\@!\\>")' 128 \ '\<\%(if\|for\|while\|until\|unless\):\@!\>'
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | psl.vim | 42 syn keyword pslOperator union until until! until!_ until_
|
| H A D | kix.vim | 113 syn match kixDoError "\<do\>\|\<until\>" 114 syn match kixDoOK contained "\<do\>\|\<until\>" 115 syn region kixDo transparent matchgroup=kixDoOK start="\<do\>" end="\<until\>" contains=ALLBUT,@k…
|
| H A D | teraterm.vim | 61 syn keyword ttlRepeat contained for next until enduntil while endwhile 63 \ "\<\%(do\|loop\)\%(\s\+\%(while\|until\)\)\?\>"
|
| H A D | haste.vim | 34 syn keyword hasteStatement type until var wait wire 47 syn match hasteStatement "\<\(repeat\|until\)\>"
|
| H A D | lua.vim | 53 syn match luaError "\<\%(end\|else\|elseif\|then\|until\|in\)\>" 73 " repeat ... until 74 syn region luaLoopBlock transparent matchgroup=luaRepeat start="\<repeat\>" end="\<until\>" conta…
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_suspend.vim | 56 " Wait until Vim actually exited and shell shows a prompt 100 " Wait until Vim actually exited and shell shows a prompt
|
| H A D | test_filechanged.vim | 14 " Need to wait until the timestamp would change by at least a second. 102 " Need to wait until the timestamp would change by at least a second.
|
| /vim-8.2.3635/runtime/ftplugin/ |
| H A D | zimbu.vim | 136 iabbr <buffer> <expr> until GCUpperSpace("until") 184 \ " | iunabbr <buffer> until" ..
|
| H A D | eiffel.vim | 33 \ '\%(\%(^\s\+\)\@<=\%(then\|until\|loop\)\|\%(then\|until\|loop\)\s\+[^ -]\|' .
|
| H A D | ishd.vim | 20 \ '\%(^\s*\)\@<=\<repeat\>\s*$:\%(^\s*\)\@<=\<until\>\s\+.\{-}\s*;\s*$,' .
|
| H A D | falcon.vim | 26 \ '\<\%(if\|case\|while\|until\|for\|do\|class\)\>=\@!' .
|
| H A D | lua.vim | 34 \ '\<repeat\>:\<until\>,' .
|
| H A D | zsh.vim | 38 \ . ',\<\%(select\|while\|until\|repeat\|for\%(each\)\=\)\>:\<done\>'
|
| H A D | pascal.vim | 34 let b:match_words .= ',\<repeat\>:\<until\>'
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | usr_09.txt | 87 the items of the menu. It will hang around until you close the window. 153 Right mouse click extend the selected text until the mouse 161 Left mouse click, with Shift extend the selected text until the mouse 192 The "current selection" will only remain valid until some other text is 248 from the cursor position until the end of the line to the clipboard: >
|
| /vim-8.2.3635/runtime/tutor/ |
| H A D | tutor.utf-8 | 34 1. Move the cursor around the screen until you are comfortable. 36 2. Hold down the down key (j) until it repeats. 78 2. To fix the errors, move the cursor until it is on top of the 83 4. Repeat steps 2 through 4 until the sentence is correct. 205 5. Repeat steps 3 and 4 until the sentence is correct and go to lesson 2.2. 245 w - until the start of the next word, EXCLUDING its first character. 405 4. Repeat steps 2 and 3 until the first line is equal to the second one. 420 ** To change until the end of a word, type ce . ** 430 5. Repeat steps 3 and 4 until the first sentence is the same as the second. 746 2. Press e until the cursor is on the end of li . [all …]
|
| H A D | tutor | 34 1. Move the cursor around the screen until you are comfortable. 36 2. Hold down the down key (j) until it repeats. 78 2. To fix the errors, move the cursor until it is on top of the 83 4. Repeat steps 2 through 4 until the sentence is correct. 205 5. Repeat steps 3 and 4 until the sentence is correct and go to lesson 2.2. 245 w - until the start of the next word, EXCLUDING its first character. 405 4. Repeat steps 2 and 3 until the first line is equal to the second one. 420 ** To change until the end of a word, type ce . ** 430 5. Repeat steps 3 and 4 until the first sentence is the same as the second. 746 2. Press e until the cursor is on the end of li . [all …]
|
| /vim-8.2.3635/runtime/keymap/ |
| H A D | korean.vim | 19 " Thus, user of this keymap should wait until previous hangul letter is
|