Home
last modified time | relevance | path

Searched refs:ts (Results 1 – 25 of 656) sorted by relevance

12345678910>>...27

/vim-8.2.3635/src/testdir/
H A Dtest_modeline.vim15 call assert_equal(8, &ts)
21 call assert_equal(8, &ts)
27 call assert_equal(8, &ts)
88 call assert_equal(2, &ts)
93 call assert_equal(2, &ts)
98 call assert_equal(8, &ts)
104 call assert_equal(8, &ts)
163 " 'ts' should be set.
286 1 vim:ts=2
305 4 vim:ts=4
[all …]
H A Dtest_vartabs.vim17 set ts=4
24 set ts=8 sts=6
43 set ts=6
55 set noet ts=8 vsts=12,2,6
67 set ts=8 sts=0 vts= vsts=
81 set ts=6 sts=0 vts= vsts=
108 call assert_equal(&ts, 4)
113 call assert_equal(&ts, 4)
155 set ts=4
162 set ts=8 sts=6
[all …]
H A Dtest_cindent.vim131 setl cindent ts=4 sw=4
2066 setl cindent ts=4 sw=4
2168 setl cindent ts=4 sw=4
2198 setl cindent ts=4 sw=4
2248 setl cindent ts=4 sw=4
2311 setl cindent ts=4 sw=4
2352 setl cindent ts=4 sw=4
2400 setl cindent ts=4 sw=4
2443 setl cindent ts=4 sw=4
2485 setl cindent ts=4 sw=4
[all …]
H A Dtest_breakindent.vim28 setl ts=4 sw=4 sts=4 breakindent
269 set ts=8
271 set ts=4
288 set ts=8
290 set ts=4
360 set ts=8
362 set ts=4
379 set ts=8
381 set ts=4
473 call s:test_windows('setl breakindent briopt= ts=8')
[all …]
H A Dtest_vim9_assign.vim133 set ts=7
134 var ts: number = &ts
136 &ts += 1
138 &ts -= 3
140 &ts *= 2
142 &ts /= 3
144 set ts=10
145 &ts %= 4
161 &ts = 6
162 &ts += 3
[all …]
H A Dtest_listlbr.vim22 setl ts=8 sw=4 sts=4 linebreak sbr= wrap
32 call s:test_windows('setl ts=4 sbr=+')
47 call s:test_windows('setl ts=4 sbr=+ list listchars=')
62 call s:test_windows('setl ts=4 sbr=+ nolist')
255 call s:test_windows('setl list listchars=tab:>- ts=70 nowrap')
H A Dtest_tab.vim7 set smarttab expandtab ts=8 sw=4
36 set expandtab smartindent copyindent ts=8 sw=8 sts=8
45 set expandtab& smartindent& copyindent& ts& sw& sts&
H A Dtest_listlbr_utf8.vim34 setl ts=4 sw=4 sts=4 linebreak sbr=+ wrap
128 call s:test_windows('setl nowrap ts=2 list listchars=tab:>- cole=2 concealcursor=n')
150 …call s:test_windows("setl ft=c ts=7 list listchars=nbsp:\u2423,tab:\u2595\u2014,trail:\u02d1,eol:\…
H A Dtest_history.vim247 call feedkeys(":set bs=2 key=abc ts=8\<CR>", 'xt')
248 call assert_equal('set bs=2 key= ts=8', histget(':'))
249 set key& bs& ts&
/vim-8.2.3635/runtime/ftplugin/
H A Dtypescript.vim23 setlocal suffixesadd+=.ts,.d.ts,.tsx,.js,.jsx,.cjs,.mjs
27 let b:browsefilter="TypeScript Files (*.ts)\t*.ts\n" .
28 \ "TypeScript Declaration Files (*.d.ts)\t*.d.ts\n" .
H A Dlogtalk.vim11 let b:undo_ftplugin = "setl ts< sw< fdm< fdc< ai< dict<"
13 setlocal ts=4
H A D8th.vim21 setlocal ts=2 sts=2 sw=2 et
27 let b:undo_ftplugin = "setlocal ts< sts< sw< et< com< fo< mps< isk< sua<"
H A Dfreebasic.vim13 " vim: ts=8
/vim-8.2.3635/src/proto/
H A Dindent.pro4 int tabstop_at(colnr_T col, int ts, int *vts);
5 colnr_T tabstop_start(colnr_T col, int ts, int *vts);
8 int tabstop_count(int *ts);
9 int tabstop_first(int *ts);
17 int get_indent_str(char_u *ptr, int ts, int list);
18 int get_indent_str_vtab(char_u *ptr, int ts, int *vts, int list);
/vim-8.2.3635/src/
H A Dindent.c106 return ts - (col % ts); in tabstop_padding()
137 return ts; in tabstop_at()
167 return (col / ts) * ts; in tabstop_start()
206 initspc = ts - (start_col % ts); in tabstop_fromto()
212 tabs += spaces / ts; in tabstop_fromto()
213 spaces -= (spaces / ts) * ts; in tabstop_fromto()
308 tabstop_count(int *ts) in tabstop_count() argument
310 return ts != NULL ? ts[0] : 0; in tabstop_count()
319 return ts != NULL ? ts[1] : 8; in tabstop_first()
437 int ts, in get_indent_str() argument
[all …]
H A Dcharset.c764 int ts; \
765 ts = (buf)->b_p_ts; \
766 return (int)(ts - (col % ts)); \
1234 int ts = wp->w_buffer->b_p_ts; in getvcol() local
1278 incr = tabstop_padding(vcol, ts, vts); in getvcol()
1280 incr = ts - (vcol % ts); in getvcol()
/vim-8.2.3635/runtime/pack/dist/opt/justify/plugin/
H A Djustify.vim50 " Additionally units of 'shiftwidth'/'sw' and 'tabstop'/'ts' may be
59 " negative 'sw' or 'ts' value.
184 " Set the indentation style (accept sw and ts units)
187 if (a:3 == '') || a:3 =~ '^-[1-9]\d*\(shiftwidth\|sw\|tabstop\|ts\)\=$'
189 elseif a:3 =~ '^-\=0\(shiftwidth\|sw\|tabstop\|ts\)\=$'
191 elseif a:3 =~ '^\d\+\(shiftwidth\|sw\|tabstop\|ts\)\=$'
193 elseif a:3 =~ '^\(shiftwidth\|sw\|tabstop\|ts\)$'
196 call Justify_error("indent: a number with 'sw'/'ts' unit")
207 elseif a:3 =~ '\(tabstop\|ts\)'
208 let indent_sw = &ts
[all …]
/vim-8.2.3635/runtime/indent/
H A Dobjc.vim35 let width = width + &ts - (width % &ts)
54 let width = width + &ts - (width % &ts)
H A Dconfig.vim36 let width = width + &ts - (width % &ts)
H A Dmake.vim88 return &ts
105 return &ts
/vim-8.2.3635/runtime/compiler/
H A Dts-node.vim18 " CompilerSet makeprg=npx\ ts-node
20 CompilerSet makeprg=ts-node
/vim-8.2.3635/runtime/syntax/
H A Dxhtml.vim11 " vim: ts=8
H A Dchaskell.vim14 " vim: ts=8
/vim-8.2.3635/runtime/doc/
H A Dif_sniff.txt11 vim:tw=78:ts=8:noet:ft=help:norl:
H A Dos_beos.txt13 vim:tw=78:ts=8:noet:ft=help:norl:

12345678910>>...27