diff options
Diffstat (limited to 'src/nvim/ex_cmds.lua')
-rw-r--r-- | src/nvim/ex_cmds.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/ex_cmds.lua b/src/nvim/ex_cmds.lua index 872f32d874..297740c752 100644 --- a/src/nvim/ex_cmds.lua +++ b/src/nvim/ex_cmds.lua @@ -490,8 +490,8 @@ module.cmds = { }, { command='chistory', - flags=bit.bor(TRLBAR), - addr_type='ADDR_NONE', + flags=bit.bor(RANGE, COUNT, TRLBAR), + addr_type='ADDR_UNSIGNED', func='qf_history', }, { @@ -1470,8 +1470,8 @@ module.cmds = { }, { command='lhistory', - flags=bit.bor(TRLBAR), - addr_type='ADDR_NONE', + flags=bit.bor(RANGE, COUNT, TRLBAR), + addr_type='ADDR_UNSIGNED', func='qf_history', }, { |