diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-01 03:32:43 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-01 04:58:05 -0500 |
commit | d1608f7503512b37650522cf5c8a3dce7add5e3b (patch) | |
tree | 6335c75138828f46154879139b1c61eee82a190e /src/nvim/ex_cmds.lua | |
parent | 5cf94effeefead893de782ddf3f3914107de824f (diff) | |
download | rneovim-d1608f7503512b37650522cf5c8a3dce7add5e3b.tar.gz rneovim-d1608f7503512b37650522cf5c8a3dce7add5e3b.tar.bz2 rneovim-d1608f7503512b37650522cf5c8a3dce7add5e3b.zip |
vim-patch:8.1.1275: cannot navigate to errors before/after the cursor
Problem: Cannot navigate to errors before/after the cursor.
Solution: Add the :cbefore and :cafter commands. (Yegappan Lakshmanan,
closes vim/vim#4340)
https://github.com/vim/vim/commit/cf6a55c4b0cbf38b0c3fbed5ffd9a3fd0d2ede0e
Diffstat (limited to 'src/nvim/ex_cmds.lua')
-rw-r--r-- | src/nvim/ex_cmds.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/nvim/ex_cmds.lua b/src/nvim/ex_cmds.lua index 60faae3268..872f32d874 100644 --- a/src/nvim/ex_cmds.lua +++ b/src/nvim/ex_cmds.lua @@ -343,6 +343,12 @@ module.cmds = { func='ex_cfile', }, { + command='cafter', + flags=bit.bor(RANGE, COUNT, TRLBAR), + addr_type='ADDR_UNSIGNED', + func='ex_cbelow', + }, + { command='call', flags=bit.bor(RANGE, NEEDARG, EXTRA, NOTRLCOM, SBOXOK, CMDWIN), addr_type='ADDR_LINES', @@ -361,6 +367,12 @@ module.cmds = { func='ex_cbuffer', }, { + command='cbefore', + flags=bit.bor(RANGE, COUNT, TRLBAR), + addr_type='ADDR_UNSIGNED', + func='ex_cbelow', + }, + { command='cbelow', flags=bit.bor(RANGE, COUNT, TRLBAR), addr_type='ADDR_UNSIGNED', @@ -1311,6 +1323,12 @@ module.cmds = { func='ex_cfile', }, { + command='lafter', + flags=bit.bor(RANGE, COUNT, TRLBAR), + addr_type='ADDR_UNSIGNED', + func='ex_cbelow', + }, + { command='later', flags=bit.bor(TRLBAR, EXTRA, NOSPC, CMDWIN), addr_type='ADDR_NONE', @@ -1323,6 +1341,12 @@ module.cmds = { func='ex_cbuffer', }, { + command='lbefore', + flags=bit.bor(RANGE, COUNT, TRLBAR), + addr_type='ADDR_UNSIGNED', + func='ex_cbelow', + }, + { command='lbelow', flags=bit.bor(RANGE, COUNT, TRLBAR), addr_type='ADDR_UNSIGNED', |