aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2016-12-14 14:36:38 -0500
committerJames McCoy <jamessan@jamessan.com>2016-12-27 14:10:27 -0500
commitf224f3fbf11ffd3095843c597045ca95c8241fcf (patch)
treea2785280c42bdfb94ea0f9c86c34093c6a203ebf /runtime
parentf613c61dae7be1c4f9eadc223a77684a128508b0 (diff)
downloadrneovim-f224f3fbf11ffd3095843c597045ca95c8241fcf.tar.gz
rneovim-f224f3fbf11ffd3095843c597045ca95c8241fcf.tar.bz2
rneovim-f224f3fbf11ffd3095843c597045ca95c8241fcf.zip
vim-patch:7.4.1997
Problem: Cannot easily scroll the quickfix window. Solution: Add ":cbottom". https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/quickfix.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt
index 7c1fc30eba..eddcb72e3f 100644
--- a/runtime/doc/quickfix.txt
+++ b/runtime/doc/quickfix.txt
@@ -428,6 +428,12 @@ 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[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.
+
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: >