Skip to content

Instantly share code, notes, and snippets.

@h-michael
Last active January 2, 2020 06:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save h-michael/0209d32535123867471e8e83fd34d441 to your computer and use it in GitHub Desktop.
Save h-michael/0209d32535123867471e8e83fd34d441 to your computer and use it in GitHub Desktop.
lua in vimrc with heredoc
" OK
if v:true
lua << EOF
local foo = 'foo'
EOF
endif
" NG
if v:true
lua << EOF
local foo = 'foo'
EOF
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment