| /vim-8.2.3635/runtime/autoload/ |
| H A D | sqlcomplete.vim | 55 " consider the partial name to be a table or table alias for the 162 " During table completion, should the table list also 192 let compl_type = 'table' 351 " owner.table 363 " owner.table, not table.column_prefix. 368 let found = index( tbl_list, ((table != '')?(table.'.'):'').column) 371 " If the table.column was found in the table list, we can safely assume 411 " for a table (and or an alias to a table). 412 let table = base 420 if table != "" [all …]
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | ft_sql.txt | 122 create table t1 ( 136 \ 'table,trigger' . 141 create table t1 ( 144 create existing table t2 ( 147 create global temporary table t3 ( 423 - For the selected table, the columns that are part of the table 548 2. Choose a table from the list. 558 All columns for a table: 563 for this table. 567 6. The table name is replaced with the column list of the table is [all …]
|
| H A D | if_lua.txt | 120 table with numeric keys 1, ..., n (a 131 Lua table, returns a dict d such that d[k] = 221 vim.version() Returns a Lua table with the Vim version. 222 The table will have the following keys: 280 o "table.insert(l, newitem)" inserts an item at the end of the list. 282 o "table.insert(l, position, newitem)" inserts an item at the 285 o "table.remove(l, position)" removes an item at the specified 306 :lua table.insert(l, 100) 307 :lua table.insert(l, 2, 200) 308 :lua table.remove(l, 1)
|
| /vim-8.2.3635/runtime/tools/ |
| H A D | unicode.vim | 154 " Build the combining table. 199 " table in mbyte.c 219 " Find this char in the data table. 357 " First make the table for all emojis. 377 " Make the table for wide emojis. 432 " Build the toLower table. 435 " Build the toUpper table. 447 " Build the foldCase table. 456 " Build the double width table. 460 " Build the ambiguous width table. [all …]
|
| /vim-8.2.3635/runtime/macros/maze/ |
| H A D | maze_mac | 53 " are given in the state table below. 60 " particular direction. This direction is given in the following table. 62 " NextChar table: 76 " State table: 120 " through the state table. 127 " Macro I sets up the state table and NextChar table at the end of the file. 135 " The entries in the NextChar table begin with a key consisting of the 167 " GYKeDP - print the state table and next char table at the end of the file 181 " wX - we have now found the entry in the table, now yank the 188 " 2WS - we have now found the entry in the table, now yank the [all …]
|
| /vim-8.2.3635/src/libvterm/src/ |
| H A D | unicode.c | 365 static int bisearch(uint32_t ucs, const struct interval *table, int max) { in bisearch() argument 369 if ((int)ucs < table[0].first || (int)ucs > table[max].last) in bisearch() 373 if ((int)ucs > table[mid].last) in bisearch() 375 else if ((int)ucs < table[mid].first) in bisearch()
|
| H A D | encoding.c | 194 struct StaticTableEncoding *table = (struct StaticTableEncoding *)enc; in decode_table() local 203 if(table->chars[c]) in decode_table() 204 cp[(*cpi)++] = table->chars[c]; in decode_table()
|
| /vim-8.2.3635/src/ |
| H A D | gui_gtk.c | 2206 GtkWidget *table; in find_replace_dialog_create() local 2294 table = gtk_grid_new(); in find_replace_dialog_create() 2296 table = gtk_table_new(1024, 4, FALSE); in find_replace_dialog_create() 2300 table = gtk_grid_new(); in find_replace_dialog_create() 2302 table = gtk_table_new(1024, 3, FALSE); in find_replace_dialog_create() 2329 gtk_grid_attach(GTK_GRID(table), tmp, 0, 0, 2, 1); in find_replace_dialog_create() 2331 gtk_table_attach(GTK_TABLE(table), tmp, 0, 1, 0, 1, in find_replace_dialog_create() 2374 gtk_grid_attach(GTK_GRID(table), tmp, 0, 1, 2, 1); in find_replace_dialog_create() 2376 gtk_table_attach(GTK_TABLE(table), tmp, 0, 1, 1, 2, in find_replace_dialog_create() 2451 gtk_grid_attach(GTK_GRID(table), tmp, 5, 2, 2, 4); in find_replace_dialog_create() [all …]
|
| H A D | mbyte.c | 1143 if (c < table[0].first) in intable() 1152 if (table[mid].last < c) in intable() 3140 convertStruct table[], in utf_convert() argument 3160 && (a - table[start].rangeStart) % table[start].step == 0) in utf_convert() 5512 cw_interval_T *table; in f_setcellwidths() local 5596 if (table == NULL) in f_setcellwidths() 5614 vim_free(table); in f_setcellwidths() 5617 table[item].first = n1; in f_setcellwidths() 5628 cw_table = table; in f_setcellwidths() 5638 vim_free(table); in f_setcellwidths() [all …]
|
| H A D | highlight.c | 2468 table->ga_growsize = 7; in get_attr_entry() 2471 for (i = 0; i < table->ga_len; ++i) in get_attr_entry() 2477 (table == &gui_attr_table in get_attr_entry() 2490 (table == &term_attr_table in get_attr_entry() 2501 || (table == &cterm_attr_table in get_attr_entry() 2544 if (ga_grow(table, 1) == FAIL) in get_attr_entry() 2547 taep = &(((attrentry_T *)table->ga_data)[table->ga_len]); in get_attr_entry() 2551 if (table == &gui_attr_table) in get_attr_entry() 2562 if (table == &term_attr_table) in get_attr_entry() 2584 ++table->ga_len; in get_attr_entry() [all …]
|
| /vim-8.2.3635/runtime/pack/dist/opt/matchit/autoload/ |
| H A D | matchit.vim | 287 let table = s:Resolve(ini, wordBR, "table") 289 let table = "" 293 let table = table . d 295 let table = table . "-" 302 if table[d] != "-" 460 let table = "----------" 477 if table[s] == "-" 480 let table = strpart(table, 0, s) . (w+b) . strpart(table, s+1) 496 if a:output == "table" 497 return table [all …]
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | lua.vim | 222 syn match luaFunc /\<table\.getn\>/ 223 syn match luaFunc /\<table\.setn\>/ 224 syn match luaFunc /\<table\.foreach\>/ 225 syn match luaFunc /\<table\.foreachi\>/ 227 syn match luaFunc /\<table\.maxn\>/ 229 syn match luaFunc /\<table\.pack\>/ 230 syn match luaFunc /\<table\.unpack\>/ 232 syn match luaFunc /\<table\.concat\>/ 233 syn match luaFunc /\<table\.sort\>/ 234 syn match luaFunc /\<table\.insert\>/ [all …]
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_lua.vim | 492 lua table.insert(t, 10) 494 lua table.insert(t, 2, 30) 496 lua table.remove(t, 2) 500 lua removed_value = table.remove(t, 3) 572 \ ? '[string "luaeval"]:1: table has empty key' 573 \ : 'table has empty key') 920 " Lua table 1024 " Lua table 1042 " vim.w Lua table 1084 " vim.b Lua table [all …]
|
| /vim-8.2.3635/runtime/autoload/xml/ |
| H A D | html32.vim | 37 …xmp', 'listing', 'dl', 'div', 'center', 'blockquote', 'form', 'isindex', 'hr', 'table', 'address'], 41 …xmp', 'listing', 'dl', 'div', 'center', 'blockquote', 'form', 'isindex', 'hr', 'table', 'address'], 53 …xmp', 'listing', 'dl', 'div', 'center', 'blockquote', 'form', 'isindex', 'hr', 'table', 'address'], 65 …', 'pre', 'xmp', 'listing', 'dl', 'div', 'center', 'blockquote', 'form', 'isindex', 'hr', 'table'], 77 …xmp', 'listing', 'dl', 'div', 'center', 'blockquote', 'form', 'isindex', 'hr', 'table', 'address'], 97 …'pre', 'xmp', 'listing', 'dl', 'div', 'center', 'blockquote', 'isindex', 'hr', 'table', 'address'], 157 …', 'pre', 'xmp', 'listing', 'dl', 'div', 'center', 'blockquote', 'form', 'isindex', 'hr', 'table'], 240 \ 'table': [ 245 …xmp', 'listing', 'dl', 'div', 'center', 'blockquote', 'form', 'isindex', 'hr', 'table', 'address'], 253 …xmp', 'listing', 'dl', 'div', 'center', 'blockquote', 'form', 'isindex', 'hr', 'table', 'address'],
|
| H A D | html40f.vim | 21 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 49 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 61 …pre', 'dl', 'div', 'center', 'noscript', 'noframes', 'blockquote', 'hr', 'table', 'address', 'tt',… 69 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 89 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 93 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 105 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 129 … 'div', 'center', 'noscript', 'noframes', 'blockquote', 'isindex', 'hr', 'table', 'fieldset', 'add… 181 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 221 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… [all …]
|
| H A D | html401t.vim | 21 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 49 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 61 …pre', 'dl', 'div', 'center', 'noscript', 'noframes', 'blockquote', 'hr', 'table', 'address', 'tt',… 69 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 89 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 93 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 105 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 129 … 'div', 'center', 'noscript', 'noframes', 'blockquote', 'isindex', 'hr', 'table', 'fieldset', 'add… 173 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 213 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… [all …]
|
| H A D | html401f.vim | 21 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 49 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 61 …pre', 'dl', 'div', 'center', 'noscript', 'noframes', 'blockquote', 'hr', 'table', 'address', 'tt',… 69 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 89 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 93 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 105 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 129 … 'div', 'center', 'noscript', 'noframes', 'blockquote', 'isindex', 'hr', 'table', 'fieldset', 'add… 181 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 221 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… [all …]
|
| H A D | html40t.vim | 21 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 49 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 61 …pre', 'dl', 'div', 'center', 'noscript', 'noframes', 'blockquote', 'hr', 'table', 'address', 'tt',… 69 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 89 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 93 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 105 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 129 … 'div', 'center', 'noscript', 'noframes', 'blockquote', 'isindex', 'hr', 'table', 'fieldset', 'add… 173 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… 213 …'center', 'noscript', 'noframes', 'blockquote', 'form', 'isindex', 'hr', 'table', 'fieldset', 'add… [all …]
|
| H A D | html40s.vim | 41 … 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'form', 'hr', 'table', 'fieldset', 'add… 45 … 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'form', 'hr', 'table', 'fieldset', 'add… 53 …', 'h6', 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'hr', 'table', 'address', 'tt',… 77 … 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'form', 'hr', 'table', 'fieldset', 'add… 81 … 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'form', 'hr', 'table', 'fieldset', 'add… 89 … 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'form', 'hr', 'table', 'fieldset', 'add… 109 …', 'h6', 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'hr', 'table', 'fieldset', 'add… 161 … 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'form', 'hr', 'table', 'fieldset', 'add… 185 … 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'form', 'hr', 'table', 'fieldset', 'add… 193 … 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'form', 'hr', 'table', 'fieldset', 'add… [all …]
|
| H A D | html401s.vim | 41 … 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'form', 'hr', 'table', 'fieldset', 'add… 45 … 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'form', 'hr', 'table', 'fieldset', 'add… 53 …', 'h6', 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'hr', 'table', 'address', 'tt',… 77 … 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'form', 'hr', 'table', 'fieldset', 'add… 81 … 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'form', 'hr', 'table', 'fieldset', 'add… 89 … 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'form', 'hr', 'table', 'fieldset', 'add… 109 …', 'h6', 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'hr', 'table', 'fieldset', 'add… 161 … 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'form', 'hr', 'table', 'fieldset', 'add… 185 … 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'form', 'hr', 'table', 'fieldset', 'add… 193 … 'ul', 'ol', 'pre', 'dl', 'div', 'noscript', 'blockquote', 'form', 'hr', 'table', 'fieldset', 'add… [all …]
|
| H A D | xhtml10s.vim | 41 …iv', 'ul', 'ol', 'dl', 'pre', 'hr', 'blockquote', 'address', 'fieldset', 'table', 'form', 'noscrip… 45 …iv', 'ul', 'ol', 'dl', 'pre', 'hr', 'blockquote', 'address', 'fieldset', 'table', 'form', 'noscrip… 53 …5', 'h6', 'div', 'ul', 'ol', 'dl', 'pre', 'hr', 'blockquote', 'address', 'table', 'br', 'span', 'b… 77 …iv', 'ul', 'ol', 'dl', 'pre', 'hr', 'blockquote', 'address', 'fieldset', 'table', 'form', 'a', 'br… 81 …iv', 'ul', 'ol', 'dl', 'pre', 'hr', 'blockquote', 'address', 'fieldset', 'table', 'form', 'a', 'br… 89 …iv', 'ul', 'ol', 'dl', 'pre', 'hr', 'blockquote', 'address', 'fieldset', 'table', 'form', 'a', 'br… 109 …iv', 'ul', 'ol', 'dl', 'pre', 'hr', 'blockquote', 'address', 'fieldset', 'table', 'noscript', 'ins… 161 …iv', 'ul', 'ol', 'dl', 'pre', 'hr', 'blockquote', 'address', 'fieldset', 'table', 'form', 'a', 'br… 185 …iv', 'ul', 'ol', 'dl', 'pre', 'hr', 'blockquote', 'address', 'fieldset', 'table', 'form', 'noscrip… 193 …iv', 'ul', 'ol', 'dl', 'pre', 'hr', 'blockquote', 'address', 'fieldset', 'table', 'form', 'noscrip… [all …]
|
| H A D | xhtml10t.vim | 21 …', 'blockquote', 'address', 'center', 'noframes', 'isindex', 'fieldset', 'table', 'form', 'a', 'br… 49 …', 'blockquote', 'address', 'center', 'noframes', 'isindex', 'fieldset', 'table', 'form', 'a', 'br… 53 …', 'blockquote', 'address', 'center', 'noframes', 'isindex', 'fieldset', 'table', 'form', 'a', 'br… 61 …enu', 'dir', 'pre', 'hr', 'blockquote', 'address', 'center', 'noframes', 'table', 'br', 'span', 'b… 69 …', 'blockquote', 'address', 'center', 'noframes', 'isindex', 'fieldset', 'table', 'form', 'a', 'br… 89 …', 'blockquote', 'address', 'center', 'noframes', 'isindex', 'fieldset', 'table', 'form', 'a', 'br… 93 …', 'blockquote', 'address', 'center', 'noframes', 'isindex', 'fieldset', 'table', 'form', 'a', 'br… 105 …', 'blockquote', 'address', 'center', 'noframes', 'isindex', 'fieldset', 'table', 'form', 'a', 'br… 129 …', 'blockquote', 'address', 'center', 'noframes', 'isindex', 'fieldset', 'table', 'a', 'br', 'span… 213 …', 'blockquote', 'address', 'center', 'noframes', 'isindex', 'fieldset', 'table', 'form', 'noscrip… [all …]
|
| H A D | xhtml10f.vim | 21 …, 'pre', 'hr', 'blockquote', 'address', 'center', 'isindex', 'fieldset', 'table', 'form', 'a', 'br… 49 …, 'pre', 'hr', 'blockquote', 'address', 'center', 'isindex', 'fieldset', 'table', 'form', 'a', 'br… 53 …, 'pre', 'hr', 'blockquote', 'address', 'center', 'isindex', 'fieldset', 'table', 'form', 'a', 'br… 61 …l', 'dl', 'menu', 'dir', 'pre', 'hr', 'blockquote', 'address', 'center', 'table', 'br', 'span', 'b… 69 …, 'pre', 'hr', 'blockquote', 'address', 'center', 'isindex', 'fieldset', 'table', 'form', 'a', 'br… 89 …, 'pre', 'hr', 'blockquote', 'address', 'center', 'isindex', 'fieldset', 'table', 'form', 'a', 'br… 93 …, 'pre', 'hr', 'blockquote', 'address', 'center', 'isindex', 'fieldset', 'table', 'form', 'a', 'br… 105 …, 'pre', 'hr', 'blockquote', 'address', 'center', 'isindex', 'fieldset', 'table', 'form', 'a', 'br… 129 …, 'pre', 'hr', 'blockquote', 'address', 'center', 'isindex', 'fieldset', 'table', 'a', 'br', 'span… 221 …, 'pre', 'hr', 'blockquote', 'address', 'center', 'isindex', 'fieldset', 'table', 'form', 'noscrip… [all …]
|
| H A D | xhtml11.vim | 41 …h6', 'ul', 'ol', 'dl', 'p', 'div', 'pre', 'blockquote', 'address', 'hr', 'table', 'form', 'fieldse… 45 …h6', 'ul', 'ol', 'dl', 'p', 'div', 'pre', 'blockquote', 'address', 'hr', 'table', 'form', 'fieldse… 53 …h6', 'ul', 'ol', 'dl', 'p', 'div', 'pre', 'blockquote', 'address', 'hr', 'table', 'ins', 'del', 's… 77 …h6', 'ul', 'ol', 'dl', 'p', 'div', 'pre', 'blockquote', 'address', 'hr', 'table', 'form', 'fieldse… 81 …h6', 'ul', 'ol', 'dl', 'p', 'div', 'pre', 'blockquote', 'address', 'hr', 'table', 'form', 'fieldse… 89 …h6', 'ul', 'ol', 'dl', 'p', 'div', 'pre', 'blockquote', 'address', 'hr', 'table', 'form', 'fieldse… 109 …h6', 'ul', 'ol', 'dl', 'p', 'div', 'pre', 'blockquote', 'address', 'hr', 'table', 'ins', 'del', 's… 161 …h6', 'ul', 'ol', 'dl', 'p', 'div', 'pre', 'blockquote', 'address', 'hr', 'table', 'form', 'fieldse… 185 …h6', 'ul', 'ol', 'dl', 'p', 'div', 'pre', 'blockquote', 'address', 'hr', 'table', 'form', 'fieldse… 193 …h6', 'ul', 'ol', 'dl', 'p', 'div', 'pre', 'blockquote', 'address', 'hr', 'table', 'form', 'fieldse… [all …]
|
| /vim-8.2.3635/runtime/indent/ |
| H A D | cucumber.vim | 59 " mid-table 63 " first line of a table, relative indent 66 " line after a table, relative unindent
|