Thursday, July 29, 2010

Vim scripting: splitting long string onto multiple lines?

When scripting in vim, is it possible to put a long string into multiple lines for better readability?

 

e.g., can I do things like:

 

let a = “long string\

continue the string”

 

or

 

let a = “long string”

“continue the string”

 

No comments: