Skip to content

Commit

Permalink
Fix quotes within quotes (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwgkgk authored and vmchale committed Oct 25, 2018
1 parent e5d5226 commit cdb3cf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions syntax/ion.vim
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ elseif exists('b:current_syntax')
finish
endif

syn region ionDoubleQuote start=""" end=""" contains=ionArrayVar,ionVariable,ionProcess,ionSingleQuote
syn region ionSingleQuote start="\"" end="\""
syn region ionDoubleQuote start=""" skip="\"" end=""" contains=ionArrayVar,ionVariable,ionProcess
syn region ionSingleQuote start="\"" skip=""" end="\""
syn region ionArrayVar start="@{" end="}"
syn match ionArrayVar "@[a-zA-Z0-9_]\+"
syn region ionVariable start="${" end="}"
Expand Down

0 comments on commit cdb3cf7

Please sign in to comment.