You can make a statement in vimscript span multiple lines by adding a \ to the start of the next line
let mylist = [
\"a",
\"b",
\"c",
\]
This is covered in :help line-continuation (doc)
You can make a statement in vimscript span multiple lines by adding a \ to the start of the next line
let mylist = [
\"a",
\"b",
\"c",
\]
This is covered in :help line-continuation (doc)