diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-23 19:23:58 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-27 09:21:28 -0400 |
commit | f0bf853f41ac4ad765bf279c331669d8c9d1e5c5 (patch) | |
tree | 4ff8f493ac157a33329a0a41d300cfe4c38de103 /runtime/doc/if_perl.txt | |
parent | ecb48e7f8a8ade4a83cb4b6bd12d80a893832ec1 (diff) | |
download | rneovim-f0bf853f41ac4ad765bf279c331669d8c9d1e5c5.tar.gz rneovim-f0bf853f41ac4ad765bf279c331669d8c9d1e5c5.tar.bz2 rneovim-f0bf853f41ac4ad765bf279c331669d8c9d1e5c5.zip |
vim-patch:2e693a88b24d
Update runtime files.
https://github.com/vim/vim/commit/2e693a88b24dc6b12883fad78ff2cb9cd4469c98
Diffstat (limited to 'runtime/doc/if_perl.txt')
-rw-r--r-- | runtime/doc/if_perl.txt | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/runtime/doc/if_perl.txt b/runtime/doc/if_perl.txt index f1d07ddb20..ddcf220844 100644 --- a/runtime/doc/if_perl.txt +++ b/runtime/doc/if_perl.txt @@ -22,14 +22,15 @@ See |provider-perl| for more information. :[range]perl << [endmarker] {script} {endmarker} - Execute perl script {script}. Useful for including - perl code in Vim scripts. Requires perl, see - |script-here|. + Execute perl script {script}. + The {endmarker} after {script} must NOT be preceded by + any white space. -The {endmarker} below the {script} must NOT be preceded by any white space. + If [endmarker] is omitted, it defaults to a dot '.' + like for the |:append| and |:insert| commands. -If [endmarker] is omitted from after the "<<", a dot '.' must be used after -{script}, like for the |:append| and |:insert| commands. + Useful for including perl code in Vim scripts. + Requires perl, see |script-here|. Example: > function! MyVimMethod() |