From d8dff33e4be1288f675256db3257d3de0da0daed Mon Sep 17 00:00:00 2001 From: Lee Wannacott Date: Sun, 7 Mar 2021 00:54:13 +1300 Subject: Added If true to show that {after} and {follow} parameters of nvim_put() are expecting boolean values --- runtime/doc/api.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'runtime') diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt index 107f7153bf..bd34411065 100644 --- a/runtime/doc/api.txt +++ b/runtime/doc/api.txt @@ -1415,10 +1415,9 @@ nvim_put({lines}, {type}, {after}, {follow}) *nvim_put()* • "c" |charwise| mode • "l" |linewise| mode • "" guess by contents, see |setreg()| - {after} Insert after cursor (like |p|), or before (like - |P|). Expects boolean value: true, or false. - {follow} Place cursor at end of inserted text. Expects - boolean value: true, or false. + {after} If true insert after cursor (like |p|), or before (like + |P|). + {follow} If true place cursor at end of inserted text. *nvim_replace_termcodes()* nvim_replace_termcodes({str}, {from_part}, {do_lt}, {special}) -- cgit