| /vim-8.2.3635/runtime/autoload/ |
| H A D | ccomplete.vim | 152 let kind = 'v' 166 let res = [{'match': match, 'tagline' : '', 'kind' : kind, 'info' : line}] 171 let kind = 'v' 189 call filter(tags, 'has_key(v:val, "kind") ? v:val["kind"] != "m" : 1') 202 call filter(diclist, 'has_key(v:val, "kind") ? v:val["kind"] != "m" : 1') 281 let kind = a:val['kind'] 282 let res['kind'] = kind 283 if kind == 'v' 286 elseif kind == 'f' 329 let d['kind'] = l[i] [all …]
|
| H A D | adacomplete.vim | 49 if l:Tag_Item['kind'] == '' 57 \ 'kind': 's', 64 let l:Info .= 'Of type : ' . g:ada#Ctags_Kinds[l:Tag_Item['kind']][1] . "\n" 87 \ 'kind': l:Tag_Item['kind'],
|
| H A D | ada.vim | 53 \ 'kind': 'k', 65 \ 'kind': 'k', 77 \ 'kind': 'x', 89 \ 'kind': 'x', 101 \ 'kind': 't', 113 \ 'kind': 't', 125 \ 'kind': 'a', 137 \ 'kind': 'a', 149 \ 'kind': 'p', 161 \ 'kind': 'p', [all …]
|
| H A D | phpcomplete.vim | 262 elseif (tag.kind ==? 'c' || tag.kind ==? 'i' || tag.kind ==? 't') 438 elseif tag.kind ==? 'c' || tag.kind ==? 'i' || tag.kind ==? 't' 584 \ 'kind':'f'}] 699 \ 'kind':'f'}] 804 call add(res, {'word': c_name, 'kind': kind}) 1071 \ 'kind':'v'}] 1081 \ 'kind':'d'}] 1095 \ 'kind':'f'}] 1944 if tag.kind == 'c' || tag.kind == 'i' || tag.kind == 't' 2625 if (tag.kind == 'c' || tag.kind == 'i' || tag.kind == 't') && tag.name == classname [all …]
|
| H A D | netrw_gitignore.vim | 16 " warranty of any kind, either expressed or implied. By using
|
| H A D | javascriptcomplete.vim | 630 let kind = 'f' 637 let kind = 'v' 640 let final_menu += [{'word':item, 'menu':m_info, 'kind':kind}]
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_taglist.vim | 26 call assert_equal('v', kindly[0]['kind']) 33 call assert_equal('λ', lambda[0]['kind']) 37 call assert_equal('d', cmd[0]['kind']) 157 \ 'kind' : 'v', 176 \ 'kind' : 'v', 196 \ 'kind' : 'f',
|
| H A D | test_tagfunc.vim | 8 \ 'cmd': '2', 'name': 'nothing'.num, 'kind': 'm', 23 \ 'kind': 'm', 'filename': 'Xfile1'}, taglist('.')[1])
|
| H A D | test_ins_complete.vim | 200 \ 'kind': 'W', 216 call assert_equal( 'W', v:completed_item[ 'kind' ] ) 269 \ 'kind': 'W', 281 call assert_equal( 'W', v:completed_item[ 'kind' ] ) 314 call assert_equal( '', v:completed_item[ 'kind' ] ) 359 …, 'items': [{'word': 'matched', 'menu': '', 'user_data': '', 'info': '', 'kind': '', 'abbr': ''}]}…
|
| H A D | test_popup.vim | 1051 \ {'word': 'Jan', 'menu': 'January', 'user_data': '', 'info': '', 'kind': '', 'abbr': ''}, 1052 \ {'word': 'Feb', 'menu': 'February', 'user_data': '', 'info': '', 'kind': '', 'abbr': ''}, 1053 \ {'word': 'Mar', 'menu': 'March', 'user_data': '', 'info': '', 'kind': '', 'abbr': ''}, 1054 \ {'word': 'Apr', 'menu': 'April', 'user_data': '', 'info': '', 'kind': '', 'abbr': ''}, 1055 \ {'word': 'May', 'menu': 'May', 'user_data': '', 'info': '', 'kind': '', 'abbr': ''}
|
| /vim-8.2.3635/src/ |
| H A D | ex_cmds.c | 3443 char_u *kind; in ex_z() local 3461 kind = x; in ex_z() 3462 if (*kind == '-' || *kind == '+' || *kind == '=' in ex_z() 3463 || *kind == '^' || *kind == '.') in ex_z() 3484 if (*kind == '=') in ex_z() 3490 if (*kind == '-' || *kind == '+') in ex_z() 3491 for (x = kind + 1; *x == *kind; ++x) in ex_z() 3494 switch (*kind) in ex_z() 3497 start = lnum - bigness * (linenr_T)(x - kind) + 1; in ex_z() 3523 if (*kind == '+') in ex_z() [all …]
|
| /vim-8.2.3635/runtime/tools/ |
| H A D | efm_filter.txt | 8 The compiler that generates this kind of error messages (4 lines):
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | fortran.vim | 215 syn match fortranStorageClass "\<kind\s*="me=s+4 237 syn match fortranIntrinsic "\<kind\>\s*[(,]"me=s+4 411 …precision \)\s*\((\(\s*kind\s*=\)\=\s*\w\+\s*)\)\=\)\|type\s\+(\s*\w\+\s*) \|character \((\(\s*len… 421 …precision \)\s*\((\(\s*kind\s*=\)\=\s*\w\+\s*)\)\=\)\|type\s\+(\s*\w\+\s*) \|character \((\(\s*len…
|
| H A D | ada.vim | 56 if b:Item['kind'] == "x" 59 if b:Item['kind'] == "a" 68 if b:Item['kind'] == "t" && exists ("g:ada_standard_types")
|
| H A D | dune.vim | 30 syn keyword lispKey library_flags c_flags c_library_flags kind package action
|
| H A D | ave.vim | 37 " 'not' is a kind of a problem: It's an Operator as well as a method
|
| H A D | snnspat.vim | 22 " hoping that matches any kind of notation...
|
| H A D | lprolog.vim | 56 syn keyword lprologKeyword kind exportdef useonly
|
| H A D | modula2.vim | 32 " The following may be discussed, since NEW and DISPOSE are some kind of
|
| H A D | terminfo.vim | 55 \ kind kFND kHLP kHOM kIC kLFT kMSG kMOV kNXT
|
| H A D | lout.vim | 48 " All kind of Lout keywords
|
| H A D | 8th.vim | 48 Builtin ;;; G:;;; ;with G:;with <# G:<# <#> G:<#> >clip G:>clip >json G:>json >kind G:>kind >n G:>n 175 … exec-cb db:exec-cb exec-name db:exec-name get db:get get-sub db:get-sub key db:key kind? db:kind? 223 Builtin fmod n:fmod frac n:frac gcd n:gcd int n:int invmod n:invmod kind? n:kind? lcm n:lcm ln n:ln
|
| /vim-8.2.3635/runtime/plugin/ |
| H A D | zipPlugin.vim | 11 " of any kind, either expressed or implied. By using this
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | tagsrch.txt | 236 # pri kind tag file 248 The "kind" column gives the kind of tag, if this was 603 There is one field that doesn't have a ':'. This is the kind 604 of the tag. It is handled like it was preceded with "kind:". 925 kind Type of the tag.
|
| H A D | rileft.txt | 35 as this kind of support is out of the scope of a simple addition to an
|