aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-01-01 23:25:03 -0500
committerJames McCoy <jamessan@jamessan.com>2017-01-09 20:23:41 -0500
commit282109c51b557bbd5d4fafb3f543613748831040 (patch)
tree7c0e68c417771ccee697ba537321ff8848c5e65c /runtime/doc
parent60e306368d5b6261acdcd88128461259663d8418 (diff)
downloadrneovim-282109c51b557bbd5d4fafb3f543613748831040.tar.gz
rneovim-282109c51b557bbd5d4fafb3f543613748831040.tar.bz2
rneovim-282109c51b557bbd5d4fafb3f543613748831040.zip
vim-patch:82af871
Updated runtime files. https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/quickfix.txt3
-rw-r--r--runtime/doc/syntax.txt4
-rw-r--r--runtime/doc/usr_41.txt1
3 files changed, 8 insertions, 0 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt
index cbb2a23a48..e94723f337 100644
--- a/runtime/doc/quickfix.txt
+++ b/runtime/doc/quickfix.txt
@@ -474,6 +474,9 @@ expression.
The BufWinEnter event is also triggered, again using "quickfix" for the buffer
name.
+Note: When adding to an existing quickfix list the autocommand are not
+triggered.
+
Note: Making changes in the quickfix window has no effect on the list of
errors. 'modifiable' is off to avoid making changes. If you delete or insert
lines anyway, the relation between the text and the error number is messed up.
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt
index 6194a636b3..e59f567826 100644
--- a/runtime/doc/syntax.txt
+++ b/runtime/doc/syntax.txt
@@ -4770,6 +4770,10 @@ font={font-name} *highlight-font*
All fonts used, except for Menu and Tooltip, should be of the same
character size as the default font! Otherwise redrawing problems will
occur.
+ To use a font name with an embedded space or other special character,
+ put it in single quotes. The single quote cannot be used then.
+ Example: >
+ :hi comment font='Monospace 10'
guifg={color-name} *highlight-guifg*
guibg={color-name} *highlight-guibg*
diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt
index bf8d31fef9..dd602c3658 100644
--- a/runtime/doc/usr_41.txt
+++ b/runtime/doc/usr_41.txt
@@ -786,6 +786,7 @@ Buffers, windows and the argument list:
tabpagenr() get the number of a tab page
tabpagewinnr() like winnr() for a specified tab page
winnr() get the window number for the current window
+ bufwinid() get the window ID of a specific buffer
bufwinnr() get the window number of a specific buffer
winbufnr() get the buffer number of a specific window
getbufline() get a list of lines from the specified buffer