diff options
Diffstat (limited to 'runtime/doc/if_perl.txt')
-rw-r--r-- | runtime/doc/if_perl.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/if_perl.txt b/runtime/doc/if_perl.txt index 3787ca69ba..1fa96e2657 100644 --- a/runtime/doc/if_perl.txt +++ b/runtime/doc/if_perl.txt @@ -19,7 +19,7 @@ See |provider-perl| for more information. working: > :perl print "Hello" -:[range]perl << [endmarker] +:[range]perl << [trim] [{endmarker}] {script} {endmarker} Execute perl script {script}. @@ -108,7 +108,7 @@ to the next. ============================================================================== 2. The VIM module *perl-vim* -Perl code gets all of its access to Neovim via the "VIM" module. +Perl code gets all of its access to Nvim via the "VIM" module. Overview > print "Hello" # displays a message @@ -116,7 +116,7 @@ Overview > VIM::SetOption("ai") # sets a vim option $nbuf = VIM::Buffers() # returns the number of buffers @buflist = VIM::Buffers() # returns array of all buffers - $mybuf = (VIM::Buffers('a.c'))[0] # returns buffer object for 'a.c' + $mybuf = (VIM::Buffers('a.c'))[0] # returns buffer object for 'a.c' @winlist = VIM::Windows() # returns array of all windows $nwin = VIM::Windows() # returns the number of windows ($success, $v) = VIM::Eval('&path') # $v: option 'path', $success: 1 |