Skip to content

Commit

Permalink
recognize singlequote strings (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
afreakk authored Dec 10, 2021
1 parent b1affc9 commit 4248aa0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions autoload/starlark.vim
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ function! starlark#set_syntax(contained) abort

exec 'syn region starlarkString start=+"+ skip=+\\\\\|\\"+ end=+"+ ' . l:option
exec 'syn region starlarkString start=+`+ end=+`+ ' . l:option
exec "syn region starlarkString start=+'+ end=+'+ " . l:option

hi def link starlarkString String

Expand Down

0 comments on commit 4248aa0

Please sign in to comment.