aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/vim.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-05-27 20:58:14 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-05-27 20:58:14 -0400
commitf5642a171f4ceca72478c1d43746ff7a5e35b6db (patch)
tree0f727cb249ccb471d66b29b35756006702490519 /src/nvim/api/vim.c
parentf5cf6f8de4878bb4fa2b733645610d720b32a2fe (diff)
parentdd539366fcbecd340462a626523a3f689cf7589e (diff)
downloadrneovim-f5642a171f4ceca72478c1d43746ff7a5e35b6db.tar.gz
rneovim-f5642a171f4ceca72478c1d43746ff7a5e35b6db.tar.bz2
rneovim-f5642a171f4ceca72478c1d43746ff7a5e35b6db.zip
Merge pull request #4817 from bfredl/remoteui
api: refactor remote ui to use API dispatch generation
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r--src/nvim/api/vim.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c
index 46ac3c9022..46d72b847d 100644
--- a/src/nvim/api/vim.c
+++ b/src/nvim/api/vim.c
@@ -98,7 +98,7 @@ void vim_feedkeys(String keys, String mode, Boolean escape_csi)
/// @return The number of bytes actually written, which can be lower than
/// requested if the buffer becomes full.
Integer vim_input(String keys)
- FUNC_ATTR_ASYNC
+ FUNC_API_ASYNC
{
return (Integer)input_enqueue(keys);
}
@@ -618,7 +618,7 @@ Dictionary vim_get_color_map(void)
Array vim_get_api_info(uint64_t channel_id)
- FUNC_ATTR_ASYNC
+ FUNC_API_ASYNC
{
Array rv = ARRAY_DICT_INIT;