| /vim-8.2.3635/src/testdir/ |
| H A D | test_listener.vim | 8 let s:list = a:l 23 let s:list = [] 43 let s:list = [] 54 let s:list = [] 78 let s:list = [] 99 let s:list = [] 122 let s:list = [] 129 let s:list = [] 151 let s:list = a:list 157 let s:list = [] [all …]
|
| H A D | test_vim9_assign.vim | 469 # list of list 474 var l2: list<list<number>> 479 var l3: list<list<list<number>>> 486 var l3: list<list<number>> 570 var list: list<string> 579 var list: list<string> 589 var list: list<string> 1192 CheckDefFailure(['var name: list<string> = [123]'], 'expected list<string> but got list<number>') 1193 CheckDefFailure(['var name: list<number> = ["xx"]'], 'expected list<number> but got list<string>') 1244 …heckDefFailure(["var l: list<list<number>> = [['', true]]"], 'E1012: Type mismatch; expected list<… [all …]
|
| H A D | test_vim9_builtin.vim | 34 def RetListAny(): list<any> 119 var l: list<number> # defaults to empty list 124 var l: list<number> 140 # Getting variable with NULL list allocates a new list at script level 157 var l: list<string> 1019 var l: list<bool> 1138 var ll: list<list<string>> = [['a', 'b', 'c']] 1222 def Wrong_dict_key_type(items: list<number>): list<number> 3093 &list->assert_equal(true) 3094 setlocal list& [all …]
|
| H A D | test_function_lists.vim | 5 " *function-list* in runtime/doc/usr_41.txt 16 call delete("Xfunction-list.diff") 55 " Verify that the ":help functions" list is complete and in ASCII order. 80 " Verify that the ":help function-list" list is complete. 89 call search('\*function-list\*$') 97 w! ++ff=unix Xfunction-list 98 let l:unequal = assert_equalfile("Xsorted_current_global_functions", "Xfunction-list", 99 \ "\":help function-list\" incomplete") 101 call system("diff -u Xsorted_current_global_functions Xfunction-list > Xfunction-list.diff") 109 call delete("Xfunction-list")
|
| H A D | test_help_tagjump.vim | 228 let list = [] 235 let list = s:get_help_compl_list("test") 236 call assert_equal(['test-col', 'test-char'], list) 241 let list = s:get_help_compl_list("test") 242 call assert_equal(['test-col', 'test-char'], list) 247 let list = s:get_help_compl_list("test") 253 let list = s:get_help_compl_list("test") 260 let list = s:get_help_compl_list("test") 267 let list = s:get_help_compl_list("test") 274 let list = s:get_help_compl_list("test") [all …]
|
| H A D | test_gn.vim | 179 call setline(1, 'this list is a list with a list of a list.') 180 /list 182 call assert_equal('list with a list of a list', @") 189 call setline(1, 'this list is a list with a list of a last.') 194 call setline(1, 'this list is a list with a lust of a last.')
|
| H A D | vim9.vim | 59 def CheckScriptFailure(lines: list<string>, error: string, lnum = -3) 72 def CheckScriptFailureList(lines: list<string>, errors: list<string>, lnum = -3) 85 def CheckScriptSuccess(lines: list<string>) 98 def CheckDefAndScriptSuccess(lines: list<string>) 112 lines: list<string>, 129 lines: list<string>, 171 def CheckTransLegacySuccess(lines: list<string>) 184 def CheckTransDefSuccess(lines: list<string>) 196 def CheckTransVim9Success(lines: list<string>) 211 def CheckLegacyAndVim9Success(lines: list<string>) [all …]
|
| H A D | test_flatten.vim | 1 " Test for flatting list. 42 let l:list = [[1], [2], [3]] 43 call assert_equal([1, 2, 3], flatten(l:list)) 44 call assert_equal([1, 2, 3], l:list) 52 let l:list = [[1], [2], [3]] 53 call assert_equal([1, 2, 3], flatten(l:list)) 55 call assert_equal([1, 2, 3], l:list) 57 " Tests for checking circular reference list can be flatten.
|
| H A D | test_mzscheme.vim | 30 mz (define l '("item0" "dictionary with list OK" "item2")) 32 mz (hash-set! h "list" l) 44 " dictionary containing a list 45 call assert_equal('dictionary with list OK', mzeval("h")["list"][1]) 48 " circular list (at the same time test lists containing lists) 50 let l2 = mzeval("h")["list"]
|
| H A D | test_listchars.vim | 1 " Tests for 'listchars' display with 'list' and :list 10 set list 119 set list 149 set list 235 set list 264 set list 282 set list 311 set list 355 set list 384 set list listchars& [all …]
|
| H A D | test_breakindent.vim | 330 " breakindent set and shift by 1, Number and list set sbr=# 344 " breakindent set and shift by 1, Number and list set sbr=# 611 call s:test_windows('setl breakindent list listchars=tab:<->') 623 call s:close_windows('set breakindent& list& listchars&') 747 setl briopt+=list:4 766 setl linebreak&vim list listchars=eol:$,space:_ 780 setl briopt=min:5,list:-1 781 setl linebreak list&vim listchars&vim 797 " check formatlistpat indent with different list levels 816 " check formatlistpat indent with different list level [all …]
|
| H A D | test_vim9_func.vim | 445 var l: list<any> 455 var l: list<any> 1364 # works for dict and list 1368 var l: list<string> = [] 2011 ...rest: list<string> 2054 def F5(items : list) argument 2519 var flist: list<func> 2544 var flist: list<func> 2753 def s: list<string> 2759 def g: list<string> [all …]
|
| H A D | test_exists.vim | 144 " Valid local list 147 " Valid local list item 151 " Invalid local list item 153 " Non-existing local list 178 " Existing global list 181 " Non-existing global list 204 " Existing window list 207 " Non-existing window list 230 " Existing tab list 233 " Non-existing tab list [all …]
|
| H A D | test_quickfix.vim | 1606 " empty list 1824 " list 3009 " single list. 3469 " list. 3477 " Add a quickfix list using '$' as the list number. 3486 " list size. 3512 " Add a quickfix list using 'nr' set to a some string or list 4009 " list. 5089 " Empty list 5298 " list window [all …]
|
| H A D | test_vim9_expr.vim | 976 var list = [1, 2, 3] 977 var name = list 978 is list 984 var list = [1, 2, 3] 985 var name = list # comment 987 is list 1789 …CheckDefFailure(["var old: list<number> = v:oldfiles"], 'E1012: Type mismatch; expected list<numbe… 1835 # list 1856 var llstring: list<list<string>> = [['text'], []] 1864 …DefExecAndScriptFailure(["var x: list<string> = g:rangelist"], 'E1012: Type mismatch; expected lis… [all …]
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | quickfix.txt | 61 window. The location list is independent of the quickfix list. 280 list is not present, then a new list is created. 309 list. 314 quickfix list is not present, then a new list is 320 list. 351 current quickfix list. If a quickfix list is not 569 location list. 682 list. 864 list is made the current list. Example: > 1081 list. [all …]
|
| H A D | ft_sql.txt | 117 the above list: > 369 :syntax list 440 replace the column list with the list of tables. 508 list. After the list is displayed press <C-W>. This will remove both the 530 this will replace the list of tables, with a list of columns for the 544 requires a list of columns. There are two ways to build a column list using 572 table in the list. 595 Similar to the table list, <C-C>p, will display a list of stored 600 Similar to the table list, <C-C>v, will display a list of views in the 643 list of characters. When this option is set to 0, the list will be [all …]
|
| H A D | if_lua.txt | 11 3. List userdata |lua-list| 119 vim.list([arg]) Returns an empty list or, if "arg" is a Lua 127 :echo luaeval('vim.list(t)') 161 list or else the current buffer. 174 :lua l = vim.list() 176 :" list 195 userdata (see |lua-list| and |lua-dict|). 260 3. List userdata *lua-list* 299 :lua l:add(vim.list()) 433 list. [all …]
|
| H A D | windows.txt | 22 7. Argument and buffer list commands |buffer-list| 618 7. Argument and buffer list commands *buffer-list* 620 args list buffer list meaning ~ 631 split & args list split & buffer list meaning ~ 642 40. :args list of arguments 666 All the entries in the argument list are added to the buffer list. Thus, you 783 buffer list. 1180 in the buffer list. 1270 Go to first buffer in buffer list. If the buffer list is 1288 Go to last buffer in buffer list. If the buffer list is [all …]
|
| H A D | index.txt | 1163 list 1201 |:buffers| :buffers list all files in the buffer list 1323 |:files| :files list all files in the buffer list 1569 buffer list 1571 buffer list 1574 buffer list 1576 list 1578 buffer list 1580 list 1582 buffer list [all …]
|
| /vim-8.2.3635/src/ |
| H A D | gui_xmdlg.c | 104 Widget list[NONE]; member 477 XtFree(list[ENCODING][i]); in fill_lists() 512 w = data->list[NAME]; in fill_lists() 515 w = data->list[STYLE]; in fill_lists() 518 w = data->list[SIZE]; in fill_lists() 527 XtFree(list[idx][i]); in fill_lists() 1184 XmAddTabGroup(data->list[NAME]); in gui_xm_select_font() 1185 XmAddTabGroup(data->list[STYLE]); in gui_xm_select_font() 1186 XmAddTabGroup(data->list[SIZE]); in gui_xm_select_font() 1258 XtManageChild(data->list[NAME]); in gui_xm_select_font() [all …]
|
| H A D | regexp_nfa.c | 4003 } list; member 4162 &from->list.multi[0], in copy_sub() 4166 &from->list.line[0], in copy_sub() 4184 &from->list.multi[1], in copy_sub_off() 4188 &from->list.line[1], in copy_sub_off() 4205 to->list.multi[0].end_lnum = from->list.multi[0].end_lnum; in copy_ze_off() 4206 to->list.multi[0].end_col = from->list.multi[0].end_col; in copy_ze_off() 4212 to->list.line[0].end = from->list.line[0].end; in copy_ze_off() 5188 len = (int)(sub->list.line[subidx].end - sub->list.line[subidx].start); in match_backref() 5738 nfa_list_T list[2]; in nfa_regmatch() local [all …]
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | sqlcomplete.vim | 140 " Used with the column list 162 " During table completion, should the table list also 183 " for returning the completion list of items. 268 " of the completion list 272 " Default the completion list to an empty list 330 " the previous column list displayed. 391 " the previous column list displayed. 403 " return the list 585 " Remove from list of groups 587 " Remove from list of keywords [all …]
|
| /vim-8.2.3635/pixmaps/ |
| H A D | gen-inline-pixbufs.sh | 4 list= 8 list="$list $prefix$name $file" 11 gdk-pixbuf-csource --raw --static --build-list $list
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | gpg.vim | 31 \ list-keys list-public-keys list-secret-keys 32 \ list-sigs lsign-key nrsign-key print-md print-mds 37 \ encrypt gen-key gen-revoke help list-packets 45 \ default-key default-preference-list 57 \ trusted-key verify-options keyid-format list-options 65 \ escape-from-lines expert fast-list-mode 66 \ fixed-list-mode for-your-eyes-only 70 \ list-only lock-multiple lock-never lock-once
|