diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-10-23 00:02:22 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-10-24 01:10:23 +0200 |
commit | 43309d1993a9affc8d6b73fbd4721e6256c28712 (patch) | |
tree | 9f0cdb799bed0bc57445a74591d8d9a1e8e209c1 /src/nvim/api/vim.c | |
parent | fdc48cad7d9fe40ad62a0ba995d088c791bc38ab (diff) | |
download | rneovim-43309d1993a9affc8d6b73fbd4721e6256c28712.tar.gz rneovim-43309d1993a9affc8d6b73fbd4721e6256c28712.tar.bz2 rneovim-43309d1993a9affc8d6b73fbd4721e6256c28712.zip |
test/api: Specify handling of VimL errors, v:errmsg.
TODO: Also spec behavior of Press-Enter prompt for these API functions.
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index 15ec52ebab..491375bd73 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -34,7 +34,7 @@ #endif /// Executes an ex-command. -/// On VimL error: Returns the VimL error and updates v:errmsg. +/// On VimL error: Returns the VimL error; v:errmsg is not updated. /// /// @param command Ex-command string /// @param[out] err Error details (including actual VimL error), if any |