aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/quickfix.txt
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2016-12-27 14:37:30 -0500
committerGitHub <noreply@github.com>2016-12-27 14:37:30 -0500
commitfb2d1cea3ffcc90c5e4e76ec7837e82bd1f73d13 (patch)
treef54e63aed247b7fdd7fc4b20c96317607d78ec42 /runtime/doc/quickfix.txt
parent21708d22cefdf69ab3862921483c8a450294a71c (diff)
parent3224ade9c3b6e339083ab9e66ce3d3f32e050e09 (diff)
downloadrneovim-fb2d1cea3ffcc90c5e4e76ec7837e82bd1f73d13.tar.gz
rneovim-fb2d1cea3ffcc90c5e4e76ec7837e82bd1f73d13.tar.bz2
rneovim-fb2d1cea3ffcc90c5e4e76ec7837e82bd1f73d13.zip
Merge pull request #5761 from jamessan/vim-7.4.1752
Catchup with upstream quickfix patches
Diffstat (limited to 'runtime/doc/quickfix.txt')
-rw-r--r--runtime/doc/quickfix.txt13
1 files changed, 12 insertions, 1 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt
index 7c1fc30eba..cbb2a23a48 100644
--- a/runtime/doc/quickfix.txt
+++ b/runtime/doc/quickfix.txt
@@ -1,4 +1,4 @@
-*quickfix.txt* For Vim version 7.4. Last change: 2016 Jul 01
+*quickfix.txt* For Vim version 7.4. Last change: 2016 Jul 07
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -428,6 +428,17 @@ EXECUTE A COMMAND IN ALL THE BUFFERS IN QUICKFIX OR LOCATION LIST:
:lw[indow] [height] Same as ":cwindow", except use the window showing the
location list for the current window.
+ *:cbo* *:cbottom*
+:cbo[ttom] Put the cursor in the last line of the quickfix window
+ and scroll to make it visible. This is useful for
+ when errors are added by an asynchronous callback.
+ Only call it once in a while if there are many
+ updates to avoid a lot of redrawing.
+
+ *:lbo* *:lbottom*
+:lbo[ttom] Same as ":cbottom", except use the window showing the
+ location list for the current window.
+
Normally the quickfix window is at the bottom of the screen. If there are
vertical splits, it's at the bottom of the rightmost column of windows. To
make it always occupy the full width: >