aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLee Wannacott <wannacottL@gmail.com>2021-03-07 00:54:13 +1300
committerLee Wannacott <wannacottL@gmail.com>2021-03-07 00:54:13 +1300
commitd8dff33e4be1288f675256db3257d3de0da0daed (patch)
treed920f878950a85ce0f2b0b7fcbf88fdfb53b5528 /src
parentea99e7f2abd0ab6318f46d098c34ecc4107ace4d (diff)
downloadrneovim-d8dff33e4be1288f675256db3257d3de0da0daed.tar.gz
rneovim-d8dff33e4be1288f675256db3257d3de0da0daed.tar.bz2
rneovim-d8dff33e4be1288f675256db3257d3de0da0daed.zip
Added If true to show that {after} and {follow} parameters of nvim_put() are expecting boolean values
Diffstat (limited to 'src')
-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 b94c99dc5e..586123aac1 100644
--- a/src/nvim/api/vim.c
+++ b/src/nvim/api/vim.c
@@ -1546,8 +1546,8 @@ theend:
/// - "c" |charwise| mode
/// - "l" |linewise| mode
/// - "" guess by contents, see |setreg()|
-/// @param after Insert after cursor (like |p|), or before (like |P|).
-/// @param follow Place cursor at end of inserted text.
+/// @param after If true insert after cursor (like |p|), or before (like |P|).
+/// @param follow If true place cursor at end of inserted text.
/// @param[out] err Error details, if any
void nvim_put(ArrayOf(String) lines, String type, Boolean after,
Boolean follow, Error *err)