| /vim-8.2.3635/src/testdir/ |
| H A D | test_retab.vim | 38 call assert_equal("\t\ta\t\t\tb c ", Retab('', 4)) 39 call assert_equal("\t\ta\t\t\tb\t\t c\t ", Retab('!', 4)) 41 call assert_equal(" a\t\tb c ", Retab('', 10)) 42 call assert_equal(" a\t\tb c ", Retab('!', 10)) 59 call assert_equal("\ta\t\tb c ", Retab('', '')) 60 call assert_equal("\ta\t\tb\t\t c\t ", Retab('!', '')) 61 call assert_equal("\t a\t\t\tb c ", Retab('', 3)) 62 call assert_equal("\t a\t\t\tb\t\t\tc\t ", Retab('!', 3))
|
| H A D | test_virtualedit.vim | 102 call setline(1, "a\tb") 108 call setline(1, "a\tb") 114 call setline(1, "a\tb") 120 call setline(1, "a\tb") 129 call setline(1, "a\tb") 135 call setline(1, "a\tb") 141 call setline(1, "a\tb") 147 call setline(1, "a\tb") 155 call setline(1, "a\tb") 162 call setline(1, "a\tb") [all …]
|
| H A D | test_charsearch.vim | 50 call setline(1, "a\tb") 51 normal! tb
|
| H A D | test_fold.vim | 272 call setline(1, ["a", "\tb", "\tc", "\td", "\te"]) 279 call assert_equal(["a", "\tb", "\td", "\tc", "\te"], getline(1, '$')) 282 call setline(1, ["a", "\tb", "\tc", "\td", "\te", "z", "\ty", "\tx", "\tw", "\tv"]) 288 …call assert_equal(["a", "\tc", "\tb", "\td", "\te", "z", "\ty", "\tx", "\tw", "\tv"], getline(1, '… 380 call setline(1, ["a", "\tb", "\tc", "\td", "\te"]) 385 call assert_equal(["a", "\tb", "\td", "\tc", "\te"], getline(1, '$')) 388 call setline(1, ["a", "\tb", "\tc", "\td", "\te", "z", "\ty", "\tx", "\tw", "\tv"]) 393 …call assert_equal(["a", "\tc", "\tb", "\td", "\te", "z", "\ty", "\tx", "\tw", "\tv"], getline(1, '…
|
| H A D | test_ex_mode.vim | 57 call assert_equal(["a\tb", "a\tb"], Ex("a\t\t\<C-H>b"), e)
|
| H A D | test_taglist.vim | 225 call writefile(["foo\ta.c\t10;\"\tf", "bar\tb.c\t20;\"\td"], 'Xtags')
|
| H A D | test_breakindent.vim | 446 call setline(1, [" a\tb\tc\td\te", " z y x w v"]) 461 call setline(1, [" a\tb\tc\td\te", " z y x w v"])
|
| H A D | test_listchars.vim | 285 call append(0, [" a\tb c" .. nbsp .. "d "])
|
| H A D | test_edit.vim | 1621 call setline(1, "a\tb") 1623 call assert_equal("axyz\tb", getline(1)) 1625 call assert_equal("12axyz\tb", getline(1))
|
| H A D | test_viminfo.vim | 1262 call add(lines, "\tb\t7\t0\n")
|
| H A D | test_normal.vim | 2171 call setline(1, ["a\tb", "c\td", "e\tf"])
|
| H A D | test_python2.vim | 1985 call assert_equal(3, pyeval('vim.strwidth("a\tb")'))
|
| H A D | test_python3.vim | 2172 call assert_equal(3, py3eval('vim.strwidth("a\tb")'))
|
| /vim-8.2.3635/src/ |
| H A D | map.c | 1410 char_u tb[MB_MAXBYTES + 4]; in check_abbr() local 1533 tb[j++] = K_SPECIAL; in check_abbr() 1534 tb[j++] = K_SECOND(c); in check_abbr() 1535 tb[j++] = K_THIRD(c); in check_abbr() 1549 newlen = (*mb_char2bytes)(c, tb + j); in check_abbr() 1550 tb[j + newlen] = NUL; in check_abbr() 1552 escaped = vim_strsave_escape_csi(tb + j); in check_abbr() 1562 tb[j++] = c; in check_abbr() 1564 tb[j] = NUL; in check_abbr() 1586 tb[0] = Ctrl_H; in check_abbr() [all …]
|
| H A D | mbyte.c | 868 unsigned char tb = trail; in dbcs_class() local 877 if (tb <= 0x7e) in dbcs_class() 878 tb -= 0x1f; in dbcs_class() 879 else if (tb <= 0x9e) in dbcs_class() 880 tb -= 0x20; in dbcs_class() 883 tb -= 0x7e; in dbcs_class() 898 tb &= 0x7f; in dbcs_class() 901 switch (lb << 8 | tb) in dbcs_class()
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | makehtml.awk | 363 { ntabs = split($0,tb," "); 365 this=tb[i]; 369 this=tb[ntabs];
|
| H A D | quickref.txt | 960 'toolbar' 'tb' GUI: which items to show in the toolbar
|
| H A D | options.txt | 8230 *'toolbar'* *'tb'* 8231 'toolbar' 'tb' string (default "icons,tooltips") 8247 :set tb=icons,text
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | sicad.vim | 333 syn keyword sicadStatement tarkd tas tase tb tbadd
|
| H A D | aml.vim | 59 …y show sidebar single size staggered station stop stripe sys system tablet tb terminal test then t…
|
| H A D | sqlanywhere.vim | 587 syn keyword sqlKeyword tablockx target tb temp template temporary term then ties
|
| H A D | vim.vim | 35 …shellredir shm showtabline slm so spelllang spr sta sua swf syntax tagcase tb tenc termwinsize tfu…
|
| /vim-8.2.3635/runtime/ |
| H A D | optwin.vim | 648 call <SID>OptionG("tb", &tb)
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | csscomplete.vim | 559 let values = ["horizontal-tb", "vertical-rl", "vertical-lr", "sideways-rl", "sideways-lr"]
|
| /vim-8.2.3635/runtime/keymap/ |
| H A D | korean-dubeolsik_utf-8.vim | 272 tb 슈
|