1- *eval.txt* For Vim version 8.0. Last change: 2017 Jul 30
1+ *eval.txt* For Vim version 8.0. Last change: 2017 Aug 01
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1815,7 +1815,7 @@ v:scrollstart String describing the script or function that caused the
18151815 hit-enter prompt.
18161816
18171817 *v:servername* *servername-variable*
1818- v:servername The resulting registered | x11-clientserver | name if any.
1818+ v:servername The resulting registered | client-server- name| if any.
18191819 Read-only.
18201820
18211821
@@ -2372,12 +2372,12 @@ tempname() String name for a temporary file
23722372term_getattr({attr} , {what} Number get the value of attribute {what}
23732373term_getcursor({buf} ) List get the cursor position of a terminal
23742374term_getjob({buf} ) Job get the job associated with a terminal
2375- term_getline({buf} [ , {row} ] ) String get a line of text from a terminal
2375+ term_getline({buf} , {row} ) String get a line of text from a terminal
23762376term_getsize({buf} ) List get the size of a terminal
23772377term_getstatus({buf} ) String get the status of a terminal
23782378term_gettitle({buf} ) String get the title of a terminal
23792379term_list() List get the list of terminal buffers
2380- term_scrape({buf} [ , {row} ] ) List get row of a terminal screen
2380+ term_scrape({buf} , {row} ) List get row of a terminal screen
23812381term_sendkeys({buf} , {keys} ) none send keystrokes to a terminal
23822382term_start({cmd} , {options} ) Job open a terminal window and run a job
23832383term_wait({buf} ) Number wait for screen to be updated
@@ -7916,8 +7916,9 @@ term_getattr({attr}, {what}) *term_getattr()*
79167916term_getcursor({buf} ) *term_getcursor()*
79177917 Get the cusor position of terminal {buf} . Returns a list with
79187918 three numbers: [rows, cols, visible]. "rows" and "cols" are
7919- zero based. "visible" is one when the cursor is visible, zero
7920- when it is hidden.
7919+ one based, the first sceen cell is row 1, column 1.
7920+ "visible" is one when the cursor is visible, zero when it is
7921+ hidden.
79217922
79227923 This is the cursor position of the terminal itself, not of the
79237924 Vim window.
@@ -7930,13 +7931,12 @@ term_getjob({buf}) *term_getjob()*
79307931 Get the Job associated with terminal window {buf} .
79317932 {buf} is used as with | term_getsize() | .
79327933
7933- term_getline({buf} [ , {row} ] ) *term_getline()*
7934+ term_getline({buf} , {row} ) *term_getline()*
79347935 Get a line of text from the terminal window of {buf} .
79357936 {buf} is used as with | term_getsize() | .
79367937
7937- The first line has {row} zero. When {row} is invalid an empty
7938- string is returned. When {row} is omitted, the cursor line is
7939- used.
7938+ The first line has {row} one. When {row} "." the cursor line
7939+ is used. When {row} is invalid an empty string is returned.
79407940
79417941term_getsize({buf} ) *term_getsize()*
79427942 Get the size of terminal {buf} . Returns a list with two
@@ -7971,12 +7971,12 @@ term_list() *term_list()*
79717971 Return a list with the buffer numbers of all buffers for
79727972 terminal windows.
79737973
7974- term_scrape({buf} [ , {row} ] ) *term_scrape()*
7974+ term_scrape({buf} , {row} ) *term_scrape()*
79757975 Get the contents of {row} of terminal screen of {buf} .
79767976 For {buf} see | term_getsize() | .
79777977
7978- The first {row} is zero . When {row} is invalid an empty list
7979- is returned. When {row} is omitted the cursor line is used .
7978+ The first line has {row} one . When {row} "." the cursor line
7979+ is used. When {row} is invalid an empty string is returned .
79807980
79817981 Return a List containing a Dict for each screen cell:
79827982 "chars" character(s) at the cell
@@ -8731,6 +8731,7 @@ tag_any_white Compiled with support for any white characters in tags
87318731 files | tag-any-white | .
87328732tcl Compiled with Tcl interface.
87338733termguicolors Compiled with true color in terminal support.
8734+ terminal Compiled with | terminal | support.
87348735terminfo Compiled with terminfo instead of termcap.
87358736termresponse Compiled with support for | t_RV | and | v:termresponse | .
87368737textobjects Compiled with support for | text-objects | .
0 commit comments