Home
last modified time | relevance | path

Searched refs:lbase (Results 1 – 4 of 4) sorted by relevance

/vim-8.2.3635/runtime/doc/
H A Dif_tcl.txt176 ::vim::lbase # number of first line
198 ::vim::lbase *tcl-var-lbase*
272 with "catch". The row and column values depend on the "::vim::lbase"
273 variable. See |tcl-var-lbase|.
339 numbers depends on the "::vim::lbase" variable (see |tcl-var-lbase|). Instead
379 "::vim::lbase" variable. See |tcl-var-lbase|.
470 This script reverses the lines in the buffer. Note the use of "::vim::lbase"
473 set t $::vim::lbase
H A Dtags9635 tcl-var-lbase if_tcl.txt /*tcl-var-lbase*
/vim-8.2.3635/src/
H A Dif_tcl.c84 int lbase; member
100 #define row2tcl(x) ((x) - (tclinfo.lbase==0))
101 #define row2vim(x) ((x) + (tclinfo.lbase==0))
102 #define col2tcl(x) ((x) + (tclinfo.lbase!=0))
103 #define col2vim(x) ((x) - (tclinfo.lbase!=0))
1765 tclinfo.lbase = 1; in tclinit()
1767 Tcl_LinkVar(interp, varname, (char *)&tclinfo.lbase, TCL_LINK_INT); in tclinit()
/vim-8.2.3635/src/testdir/
H A Dtest_tcl.vim239 " When setting ::vim::lbase to 0, line/col are counted from 0
241 tcl set ::vim::lbase 0
247 tcl set ::vim::lbase 1
421 " Check that $buf count and $buf last differ when ::vim::lbase is 0.
422 tcl set ::vim::lbase 0
429 tcl set ::vim::lbase 1