From cde94598ed08c35341f4251dd2a0111ef52b338d Mon Sep 17 00:00:00 2001 From: Lee Wannacott Date: Sun, 7 Mar 2021 00:06:13 +1300 Subject: Clarify that nvim_put()'s {after} and {follow} parameters expect boolean values true, or false. --- runtime/doc/api.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt index fdc41af1d5..e7ff6db692 100644 --- a/runtime/doc/api.txt +++ b/runtime/doc/api.txt @@ -1416,8 +1416,9 @@ nvim_put({lines}, {type}, {after}, {follow}) *nvim_put()* • "l" |linewise| mode • "" guess by contents, see |setreg()| {after} Insert after cursor (like |p|), or before (like - |P|). - {follow} Place cursor at end of inserted text. + |P|). Expects boolean value: true, or false. + {follow} Place cursor at end of inserted text. Expects + boolean value true, or false. *nvim_replace_termcodes()* nvim_replace_termcodes({str}, {from_part}, {do_lt}, {special}) -- cgit