diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-03-22 10:59:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-22 10:59:38 +0100 |
commit | c45b5e2c5b0f02742099ebccc44462fe4203e99c (patch) | |
tree | 13811fb22e65a99413aa5373c41e8c77d99ca779 /src/nvim/ex_cmds.lua | |
parent | 48ce2ef912cbbe43b85b45a8a97f8d240318718a (diff) | |
parent | a92b38934a2d00c13ee4d1969d994da15e0857ab (diff) | |
download | rneovim-c45b5e2c5b0f02742099ebccc44462fe4203e99c.tar.gz rneovim-c45b5e2c5b0f02742099ebccc44462fe4203e99c.tar.bz2 rneovim-c45b5e2c5b0f02742099ebccc44462fe4203e99c.zip |
Merge pull request #22743 from bfredl/luaequals
feat(lua): allow `:=expr` as a shorter version of `:lua =expr`
Diffstat (limited to 'src/nvim/ex_cmds.lua')
-rw-r--r-- | src/nvim/ex_cmds.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.lua b/src/nvim/ex_cmds.lua index c8b6ceab69..2fd50a18d3 100644 --- a/src/nvim/ex_cmds.lua +++ b/src/nvim/ex_cmds.lua @@ -3319,7 +3319,7 @@ module.cmds = { { command='=', enum='CMD_equal', - flags=bit.bor(RANGE, TRLBAR, DFLALL, FLAGS, CMDWIN, LOCK_OK), + flags=bit.bor(RANGE, EXTRA, DFLALL, ARGOPT, CMDWIN, LOCK_OK), addr_type='ADDR_LINES', func='ex_equal', }, |