diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-07-03 05:00:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-03 05:00:02 +0800 |
commit | 8d37901f1c57c9025e341a84e15fa158bcb4e7dc (patch) | |
tree | c90e1d89fd93df88bf6938018ada5bf4a98ec7ba /src/nvim/ex_cmds2.c | |
parent | 108368bdd5546319952767325c1a28de537fec75 (diff) | |
parent | 7a907c3314f939a3d2983ac07edc5c9672957352 (diff) | |
download | rneovim-8d37901f1c57c9025e341a84e15fa158bcb4e7dc.tar.gz rneovim-8d37901f1c57c9025e341a84e15fa158bcb4e7dc.tar.bz2 rneovim-8d37901f1c57c9025e341a84e15fa158bcb4e7dc.zip |
Merge pull request #19203 from zeertzjq/api-cmd-unsilent
feat(api): add `unsilent` to command APIs
Diffstat (limited to 'src/nvim/ex_cmds2.c')
-rw-r--r-- | src/nvim/ex_cmds2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index 9cb6d360df..defe22ea9a 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -1640,7 +1640,7 @@ void ex_options(exarg_T *eap) bool multi_mods = 0; buf[0] = NUL; - (void)add_win_cmd_modifers(buf, &multi_mods); + (void)add_win_cmd_modifers(buf, &cmdmod, &multi_mods); os_setenv("OPTWIN_CMD", buf, 1); cmd_source(SYS_OPTWIN_FILE, NULL); |