aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-07-31 19:15:36 -0400
committerGitHub <noreply@github.com>2021-07-31 19:15:36 -0400
commita5c25e4f3ee1bbfd44f087a7b5b5a81b7ed20365 (patch)
tree4518d00e916ce72f130e86ac687fdc43697373bf /runtime
parent24f2b9ef1cee4945736dc339b18c1eba1ef0d5ed (diff)
parent927383f212bfecd224e9071da363c17655a3e415 (diff)
downloadrneovim-a5c25e4f3ee1bbfd44f087a7b5b5a81b7ed20365.tar.gz
rneovim-a5c25e4f3ee1bbfd44f087a7b5b5a81b7ed20365.tar.bz2
rneovim-a5c25e4f3ee1bbfd44f087a7b5b5a81b7ed20365.zip
Merge pull request #15228 from janlazo/vim-8.2.3002
vim-patch:8.2.{3002,3019,3025,3030,3032,3044,3046,3063,3101,3115,3119,3120,3131,3136,3140,3157,3163,3218,3245,3254}
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/eval.txt9
1 files changed, 7 insertions, 2 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 83e10d649d..a76298c86c 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -4759,7 +4759,10 @@ getqflist([{what}]) *getqflist()*
bufname() to get the name
module module name
lnum line number in the buffer (first line is 1)
+ end_lnum
+ end of line number if the item is multiline
col column number (first column is 1)
+ end_col end of column number if the item has range
vcol |TRUE|: "col" is visual column
|FALSE|: "col" is byte index
nr error number
@@ -9320,10 +9323,12 @@ win_gettype([{nr}]) *win_gettype()*
Return the type of the window:
"autocmd" autocommand window. Temporary window
used to execute autocommands.
- "popup" popup window |popup|
- "preview" preview window |preview-window|
"command" command-line window |cmdwin|
(empty) normal window
+ "loclist" |location-list-window|
+ "popup" popup window |popup|
+ "preview" preview window |preview-window|
+ "quickfix" |quickfix-window|
"unknown" window {nr} not found
When {nr} is omitted return the type of the current window.