Searched refs:outer (Results 1 – 25 of 38) sorted by relevance
12
| /vim-8.2.3635/runtime/autoload/ |
| H A D | python3complete.vim | 312 outer = self 313 while outer.parent != None and outer.indent >= indent: 314 outer = outer.parent 315 return outer
|
| H A D | pythoncomplete.vim | 330 outer = self 331 while outer.parent != None and outer.indent >= indent: 332 outer = outer.parent 333 return outer
|
| H A D | syntaxcomplete.vim | 645 " Do this by using the outer substitute() call to gather all
|
| /vim-8.2.3635/src/ |
| H A D | vim9execute.c | 2706 while (depth > 1 && outer != NULL) in exec_instructions() 2708 outer = outer->out_up; in exec_instructions() 2711 if (outer == NULL) in exec_instructions() 2719 + iptr->isn_arg.outer.outer_idx; in exec_instructions() 5145 iptr->isn_arg.outer.outer_depth, in list_instructions() 5146 iptr->isn_arg.outer.outer_idx in list_instructions() 5150 iptr->isn_arg.outer.outer_depth, in list_instructions() 5151 iptr->isn_arg.outer.outer_idx); in list_instructions() 5234 iptr->isn_arg.outer.outer_depth, in list_instructions() 5238 iptr->isn_arg.outer.outer_depth, in list_instructions() [all …]
|
| H A D | vim9.h | 446 isn_outer_T outer; member
|
| H A D | evalwindow.c | 265 get_framelayout(frame_T *fr, list_T *l, int outer) in get_framelayout() argument 274 if (outer) in get_framelayout()
|
| H A D | vim9compile.c | 1390 isn->isn_arg.outer.outer_idx = idx; in generate_STOREOUTER() 1391 isn->isn_arg.outer.outer_depth = level; in generate_STOREOUTER() 1469 isn->isn_arg.outer.outer_idx = idx; in generate_LOADOUTER() 1470 isn->isn_arg.outer.outer_depth = nesting; in generate_LOADOUTER()
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | typescript.vim | 28 " nextgroup doesn't contain objectLiteral, let outer region contains it
|
| H A D | ayacc.vim | 46 " I'd really like to highlight just the outer {}. Any suggestions???
|
| H A D | sqlj.vim | 38 syn keyword sqljKeyword foreign outer inner isolation left right
|
| H A D | yacc.vim | 80 " I'd really like to highlight just the outer {}. Any suggestions??? {{{1
|
| H A D | sqlinformix.vim | 98 syn keyword sqlKeyword optimization order outer
|
| H A D | sqloracle.vim | 39 syn keyword sqlKeyword join cross inner outer left right
|
| H A D | asciidoc.vim | 13 " - Nested quoted text formatting is highlighted according to the outer
|
| H A D | initex.vim | 132 …(end\)\=csname\|e\=def\|expandafter\|futurelet\|global\|let\|long\|noexpand\|outer\|relax\|the\)\>'
|
| H A D | mf.vim | 58 syn keyword mfCommand nonstopmode numspecial openwindow outer randomseed
|
| H A D | mysql.vim | 34 syn keyword mysqlKeyword on optimize option optionally order outer outfile
|
| H A D | progress.vim | 224 … ordered-join ordinal orientation origin-handle origin-rowid os-getenv outer outer-join override o…
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | usr_29.txt | 363 the start of the outer block use the "[[" command. Use "][" to find the end. 383 When writing C++ or Java, the outer {} block is for the class. The next level
|
| H A D | quotes.txt | 18 Vi as some kind of outer space alien in human clothes. Once I tried I really
|
| H A D | indent.txt | 470 relative to the outer context (i.e. start of the line or the 483 "(N": causes the indent to be N characters relative to the outer
|
| /vim-8.2.3635/runtime/indent/ |
| H A D | clojure.vim | 186 " closest outer `[`.
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_textobjects.vim | 169 " copy the outer tag block from a tag without an end tag
|
| H A D | test_vim9_script.vim | 253 var outer = 1 256 assert_equal(1, outer) 259 assert_equal(1, outer)
|
| H A D | test_syntax.vim | 731 \ ' } /* missing newline */ } /* end of outer if */ else {',
|
12