diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-05-11 21:26:05 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-05-12 07:29:21 +0200 |
commit | 137eedb4edab1643b47282cce4ca07dd2ee42a63 (patch) | |
tree | 75063f22b1a90605b6f2aee0233729eaf06306b4 /src/nvim/api/vim.c | |
parent | cb6672853a0df3dbe5202621d818ef1c2da7432c (diff) | |
download | rneovim-137eedb4edab1643b47282cce4ca07dd2ee42a63.tar.gz rneovim-137eedb4edab1643b47282cce4ca07dd2ee42a63.tar.bz2 rneovim-137eedb4edab1643b47282cce4ca07dd2ee42a63.zip |
API: nvim_get_commands(): return Dictionary
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index 305cc1a43c..7a951d4e67 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -954,12 +954,12 @@ Dictionary nvim_get_mode(void) /// @returns Array of maparg()-like dictionaries describing mappings. /// The "buffer" key is always zero. ArrayOf(Dictionary) nvim_get_keymap(String mode) - FUNC_API_SINCE(3) + FUNC_API_SINCE(3) { return keymap_array(mode, NULL); } -/// Gets a list of global (non-buffer-local) Ex commands. +/// Gets a map of global (non-buffer-local) Ex commands. /// /// Currently only |user-commands| are supported, not builtin Ex commands. /// @@ -967,9 +967,9 @@ ArrayOf(Dictionary) nvim_get_keymap(String mode) /// {"builtin":false} /// @param[out] err Error details, if any. /// -/// @returns Array of dictionaries describing commands. -ArrayOf(Dictionary) nvim_get_commands(Dictionary opts, Error *err) - FUNC_API_SINCE(4) +/// @returns Map of maps describing commands. +Dictionary nvim_get_commands(Dictionary opts, Error *err) + FUNC_API_SINCE(4) { return nvim_buf_get_commands(-1, opts, err); } |