diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-07-07 18:58:59 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-07-07 18:58:59 +0200 |
commit | dcb170018642ec144cd87d9d9fe076575b8d1263 (patch) | |
tree | ad3a4a0cc099d8b16715822700dae3b4b616a38a /src/ex_cmds.h | |
parent | 1e5e1231ac9e1ba9678812c96f9d554a078eeec4 (diff) | |
download | vim-git-dcb170018642ec144cd87d9d9fe076575b8d1263.tar.gz |
patch 7.4.1997v7.4.1997
Problem: Cannot easily scroll the quickfix window.
Solution: Add ":cbottom".
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r-- | src/ex_cmds.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h index 5053e602e..8c64d331a 100644 --- a/src/ex_cmds.h +++ b/src/ex_cmds.h @@ -259,6 +259,9 @@ EX(CMD_catch, "catch", ex_catch, EX(CMD_cbuffer, "cbuffer", ex_cbuffer, BANG|RANGE|NOTADR|WORD1|TRLBAR, ADDR_LINES), +EX(CMD_cbottom, "cbottom", ex_cbottom, + TRLBAR, + ADDR_LINES), EX(CMD_cc, "cc", ex_cc, RANGE|NOTADR|COUNT|TRLBAR|BANG, ADDR_LINES), |