Does Vimscript allow multi-line strings?
The python and ruby commands allow the format: :python << EOF
Can you do anything similar with strings?
|
|
|
Vimscript does allow continuation of the previous line by starting the next with a backslash, but that isn't quite as convenient as a heredoc string such as you would find in Ruby, PHP, or Bash.
Have a look at the relevant documentation on line-continuation. |
||||
|
|