| /vim-8.2.3635/runtime/syntax/ |
| H A D | ada.vim | 174 " Section: Handle Ada's record keywords. {{{1 176 " 'record' usually starts a structure, but "with null record;" does not, 178 " 'record;' matches a "with null record", so make it a keyword (this can 180 " We see the "end" in "end record" before the word record, so we match that 183 syntax match adaStructure "\<record\>" contains=adaRecord 184 syntax match adaStructure "\<end\s\+record\>" contains=adaRecord 185 syntax match adaKeyword "\<record;"me=e-1 245 " Recognize "with null record" as a keyword (even the "record"). 246 syntax match adaKeyword "\<with\s\+null\s\+record\>" 301 \ start="\<is\s\+record\>" [all …]
|
| H A D | dnsmasq.vim | 149 syn match DnsmasqKeyword "^\s*host-record\>" 172 syn match DnsmasqKeyword "^\s*naptr-record\>" 184 syn match DnsmasqKeyword "^\s*ptr-record\>" 214 syn match DnsmasqKeyword "^\s*txt-record\>"
|
| H A D | hex.vim | 7 " Each record (line) is built as follows: 38 " The address field groups include the record type field in the last 2
|
| H A D | model.vim | 19 syn keyword modelKeyword or procedure public read readln readonly record recursive rem rep
|
| H A D | chicken.vim | 44 syn keyword schemeSyntax define-record
|
| H A D | srec.vim | 6 " Each record (line) is built as follows:
|
| H A D | mgl.vim | 27 syn keyword mglStruct record
|
| H A D | murphi.vim | 66 syn keyword murphiStructure record
|
| H A D | ant.vim | 73 … antElement display property propertyfile propertyref propertyset pvcs pvcsproject record reference
|
| H A D | quake.vim | 57 syn keyword quakeCommand quit rcon reconnect record -right say say_team
|
| /vim-8.2.3635/src/xdiff/ |
| H A D | xhistogram.c | 53 struct record { struct 55 struct record *next; argument 112 struct record **rec_chain, *rec; in scanA() 165 struct record *rec = index->records[TABLE_HASH(index, 2, b_ptr)]; in try_lcs() 274 sz *= sizeof(struct record *); in find_lcs() 275 if (!(index.records = (struct record **) xdl_malloc(sz))) in find_lcs() 280 sz *= sizeof(struct record *); in find_lcs() 281 if (!(index.line_map = (struct record **) xdl_malloc(sz))) in find_lcs() 292 if (xdl_cha_init(&index.rcha, sizeof(struct record), count1 / 4 + 1) < 0) in find_lcs()
|
| H A D | xpatience.c | 93 xrecord_t *record = records[line - 1]; in insert_record() local 104 int index = (int)((record->ha << 1) % map->alloc); in insert_record() 107 if (map->entries[index].hash != record->ha) { in insert_record() 123 map->entries[index].hash = record->ha; in insert_record()
|
| /vim-8.2.3635/runtime/indent/ |
| H A D | ada.vim | 36 setlocal indentkeys+=0=~then,0=~end,0=~elsif,0=~when,0=~exception,0=~begin,0=~is,0=~record 46 …loop\|use\)\>\|declare\>\|begin\>\|type\>.*\<is\>[^;]*$\|\(type\>.*\)\=\<record\>\|procedure\>\|fu… 48 …loop\|use\)\>\|declare\>\|begin\>\|type\>.*\<is\>[^;]*$\|\(type\>.*\)\=\<record\>\|procedure\>\|fu… 221 elseif line =~ '^\s*end\s*record\>' 222 " Move indent back to tallying 'type' preceding the 'record'. 223 " Allow indent to be equal to 'end record's. 263 elseif line =~ '^\s*record\>' 276 elseif line =~ '^\s*end\>\s*\<record\>' 278 let ind = s:EndBlockIndent( ind, lnum, '\(type\>.*\)\=\<record\>', 'end\>\s*\<record\>' ) 287 …let ind = s:MainBlockIndent( ind, lnum, '\(if\|while\|for\|loop\|accept\|begin\|record\|case\|exce…
|
| H A D | vhdl.vim | 19 setlocal indentkeys+==~case,=~loop,=~for,=~generate,=~record,=~units,=~process,=~block,=~function,=… 136 " keywords: "end" + "record", "units" 146 if prevs =~? '^\s*end\s\+\%(record\|units\)\>' 233 " keywords: "record", "units" 235 if curs =~? s:NC.s:NE.'\<\%(record\|units\)\>' 239 if curs !~? s3.'.*'.s:NC.'\<\%(record\|units\)\>.*'.s:ES && prevs =~? s3 282 " removed: "begin", "case", "elsif", "if", "loop", "record", "units", "while" 305 " keyword: "begin", "loop", "record", "units" 312 …if prevs =~? s:NC.'\%(\<begin\>\|'.s:NE.'\<\%(loop\|record\|units\)\>\)' || prevs =~? '^\s*\%(comp… 332 …" + "block", "for", "function", "generate", "if", "loop", "procedure", "process", "record", "units" [all …]
|
| H A D | pascal.vim | 19 setlocal indentkeys+==record,==if,==else,==case 119 if prev_codeline =~ '\<\(begin\|record\)$'
|
| /vim-8.2.3635/runtime/ftplugin/ |
| H A D | vhdl.vim | 44 \ s:notend.'\<record\>:\<end\s\+record\>,'. 76 …iguration", "component", "entity", "function", "package", "procedure", "process", "record", "units" 77 …e\|block\|configuration\|component\|entity\|function\|package\|procedure\|process\|record\|units\)'
|
| H A D | chicken.vim | 27 setl lispwords+=define-record 28 setl lispwords+=define-record-printer
|
| H A D | ada.vim | 115 \ s:notend . '\<record\>:\<end\>\s\+\<record\>'
|
| H A D | scheme.vim | 27 setl lispwords+=define-record-type
|
| H A D | pascal.vim | 30 …begin\|case\|\%(\%(=\|packed\)\s*\)\@<=\%(class\|object\)\|\%(=\s*\)\@<=interface\|record\|try\)\>'
|
| H A D | erlang.vim | 36 let &l:define = '^\s*-\%(define\|record\|type\|opaque\)'
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_autocmd.vim | 269 let g:record = [] 272 au WinNew * call add(g:record, 'WinNew') 274 au WinEnter * call add(g:record, 'WinEnter') 275 au WinLeave * call add(g:record, 'WinLeave') 276 au TabNew * call add(g:record, 'TabNew') 278 au TabEnter * call add(g:record, 'TabEnter') 279 au TabLeave * call add(g:record, 'TabLeave') 292 \ ], g:record) 294 let g:record = [] 303 \ ], g:record) [all …]
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | vimball.vim | 117 " record current tab, initialize while loop index 378 " record actions in <.VimballRecord> 602 " s:RecordInVar: record a un-vimball command in the .VimballRecord file {{{2 666 " call Decho("s:record[file|dir] doesn't exist")
|
| H A D | ada.vim | 48 …, 'use', 'is', 'raise', 'declare', 'range', 'when', 'delay', 'limited', 'record', 'while', 'delta'… 176 \ 'c': ["component", "record type components"],
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | usr_26.txt | 206 Another way is to record the commands while you perform them manually. This 214 want to record the script bit by bit. If you want to start from scratch and
|