summaryrefslogtreecommitdiff
path: root/src/ex_cmds.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-05-05 15:02:30 +0200
committerBram Moolenaar <Bram@vim.org>2019-05-05 15:02:30 +0200
commitcf6a55c4b0cbf38b0c3fbed5ffd9a3fd0d2ede0e (patch)
treeba576efdd0c82bd9177a75be2584be5f445a680b /src/ex_cmds.h
parentce79353ace9e21238f13655089363cd23cbb6b32 (diff)
downloadvim-git-cf6a55c4b0cbf38b0c3fbed5ffd9a3fd0d2ede0e.tar.gz
patch 8.1.1275: cannot navigate to errors before/after the cursorv8.1.1275
Problem: Cannot navigate to errors before/after the cursor. Solution: Add the :cbefore and :cafter commands. (Yegappan Lakshmanan, closes #4340)
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r--src/ex_cmds.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h
index 58aa8c313..9e420b3fd 100644
--- a/src/ex_cmds.h
+++ b/src/ex_cmds.h
@@ -266,6 +266,9 @@ EX(CMD_caddexpr, "caddexpr", ex_cexpr,
EX(CMD_caddfile, "caddfile", ex_cfile,
TRLBAR|FILE1,
ADDR_NONE),
+EX(CMD_cafter, "cafter", ex_cbelow,
+ RANGE|COUNT|TRLBAR,
+ ADDR_UNSIGNED),
EX(CMD_call, "call", ex_call,
RANGE|NEEDARG|EXTRA|NOTRLCOM|SBOXOK|CMDWIN,
ADDR_LINES),
@@ -275,6 +278,9 @@ EX(CMD_catch, "catch", ex_catch,
EX(CMD_cbuffer, "cbuffer", ex_cbuffer,
BANG|RANGE|WORD1|TRLBAR,
ADDR_OTHER),
+EX(CMD_cbefore, "cbefore", ex_cbelow,
+ RANGE|COUNT|TRLBAR,
+ ADDR_UNSIGNED),
EX(CMD_cbelow, "cbelow", ex_cbelow,
RANGE|COUNT|TRLBAR,
ADDR_UNSIGNED),
@@ -749,12 +755,18 @@ EX(CMD_laddbuffer, "laddbuffer", ex_cbuffer,
EX(CMD_laddfile, "laddfile", ex_cfile,
TRLBAR|FILE1,
ADDR_NONE),
+EX(CMD_lafter, "lafter", ex_cbelow,
+ RANGE|COUNT|TRLBAR,
+ ADDR_UNSIGNED),
EX(CMD_later, "later", ex_later,
TRLBAR|EXTRA|NOSPC|CMDWIN,
ADDR_NONE),
EX(CMD_lbuffer, "lbuffer", ex_cbuffer,
BANG|RANGE|WORD1|TRLBAR,
ADDR_OTHER),
+EX(CMD_lbefore, "lbefore", ex_cbelow,
+ RANGE|COUNT|TRLBAR,
+ ADDR_UNSIGNED),
EX(CMD_lbelow, "lbelow", ex_cbelow,
RANGE|COUNT|TRLBAR,
ADDR_UNSIGNED),