diff options
author | Michael Bleuez <michael.bleuez2@gmail.com> | 2021-04-24 12:47:52 +0200 |
---|---|---|
committer | Michael Bleuez <michael.bleuez2@gmail.com> | 2021-04-24 12:47:52 +0200 |
commit | 684b4ae736c9ff1fd4bcaa346931a7a48fe2e819 (patch) | |
tree | 6193485d54acb8eb4277b256cb111a7980cf484e /src/nvim/api/vim.c | |
parent | 11728988dcc15984e6b4869b6409b13279dd8c47 (diff) | |
download | rneovim-684b4ae736c9ff1fd4bcaa346931a7a48fe2e819.tar.gz rneovim-684b4ae736c9ff1fd4bcaa346931a7a48fe2e819.tar.bz2 rneovim-684b4ae736c9ff1fd4bcaa346931a7a48fe2e819.zip |
doc : fixing missing @return in nvim_open_term doc
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index 75592ae3a7..c363c77afb 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -1267,6 +1267,7 @@ fail: /// @param buffer the buffer to use (expected to be empty) /// @param opts Optional parameters. Reserved for future use. /// @param[out] err Error details, if any +/// @return Channel id, or 0 on error Integer nvim_open_term(Buffer buffer, Dictionary opts, Error *err) FUNC_API_SINCE(7) { |