diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2021-06-18 09:47:01 +0100 |
---|---|---|
committer | Sean Dewar <seandewar@users.noreply.github.com> | 2021-06-19 16:37:04 +0100 |
commit | bb35ed6aaaff097ae7b9ee3a6f35b11f808c5b89 (patch) | |
tree | c599d28cef1c544643e32c568d766e90f1cc14db | |
parent | 7da86f55a7ab08fee8479b219b2fbaf2eb424724 (diff) | |
download | rneovim-bb35ed6aaaff097ae7b9ee3a6f35b11f808c5b89.tar.gz rneovim-bb35ed6aaaff097ae7b9ee3a6f35b11f808c5b89.tar.bz2 rneovim-bb35ed6aaaff097ae7b9ee3a6f35b11f808c5b89.zip |
fix(doc): don't use method call syntax in examples
The method call syntax patches aren't ported yet.
-rw-r--r-- | runtime/doc/map.txt | 2 | ||||
-rw-r--r-- | runtime/doc/tips.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt index 77cbf7d9b7..10d503e180 100644 --- a/runtime/doc/map.txt +++ b/runtime/doc/map.txt @@ -855,7 +855,7 @@ Here is an example that counts the number of spaces with <F4>: > set clipboard= selection=inclusive let commands = #{line: "'[V']y", char: "`[v`]y", block: "`[\<c-v>`]y"} silent exe 'noautocmd keepjumps normal! ' .. get(commands, a:type, '') - echom getreg('"')->count(' ') + echom count(getreg('"'), ' ') finally call setreg('"', reg_save) call setpos("'<", visual_marks_save[0]) diff --git a/runtime/doc/tips.txt b/runtime/doc/tips.txt index bcb2e48cbf..27b6ca2885 100644 --- a/runtime/doc/tips.txt +++ b/runtime/doc/tips.txt @@ -462,7 +462,7 @@ the current window, try this custom `:HelpCurwin` command: execute mods .. ' helpclose' let s:did_open_help = v:true endif - if !getcompletion(a:subject, 'help')->empty() + if !empty(getcompletion(a:subject, 'help')) execute mods .. ' edit ' .. &helpfile endif return 'help ' .. a:subject |