aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/vim.c
diff options
context:
space:
mode:
authorFamiu Haque <famiuhaque@protonmail.com>2022-05-29 10:42:00 +0600
committerFamiu Haque <famiuhaque@protonmail.com>2022-05-29 10:52:30 +0600
commit9988d2f214963b3cac70026d6ad4bb058837afd9 (patch)
tree0078fb640f97b5c14e38ae64fbb68519612b9553 /src/nvim/api/vim.c
parent081eb72a80afd83398465382171765bdeaf6dba5 (diff)
downloadrneovim-9988d2f214963b3cac70026d6ad4bb058837afd9.tar.gz
rneovim-9988d2f214963b3cac70026d6ad4bb058837afd9.tar.bz2
rneovim-9988d2f214963b3cac70026d6ad4bb058837afd9.zip
feat(nvim_create_user_command): pass structured modifiers to commands
Adds an `smods` key to `nvim_create_user_command` Lua command callbacks, which has command modifiers but in a structured format. This removes the need to manually parse command modifiers. It also reduces friction in using `nvim_cmd` inside a Lua command callback.
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r--src/nvim/api/vim.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c
index dd0b75bbfb..5c3c16d6b0 100644
--- a/src/nvim/api/vim.c
+++ b/src/nvim/api/vim.c
@@ -2501,6 +2501,8 @@ Dictionary nvim_eval_statusline(String str, Dict(eval_statusline) *opts, Error *
/// - count: (number) Any count supplied |<count>|
/// - reg: (string) The optional register, if specified |<reg>|
/// - mods: (string) Command modifiers, if any |<mods>|
+/// - smods: (table) Command modifiers in a structured format. Has the same
+/// structure as the "mods" key of |nvim_parse_cmd()|.
/// @param opts Optional command attributes. See |command-attributes| for more details. To use
/// boolean attributes (such as |:command-bang| or |:command-bar|) set the value to
/// "true". In addition to the string options listed in |:command-complete|, the