fish.kak: do not treat escaped quotes as region start
Just like in sh.kak, for example: echo \" \\\" this should not be highlighted
This commit is contained in:
parent
8b3696982f
commit
7e50bdbf2f
|
@ -33,8 +33,8 @@ provide-module fish %{
|
|||
|
||||
add-highlighter shared/fish regions
|
||||
add-highlighter shared/fish/code default-region group
|
||||
add-highlighter shared/fish/double_string region '"' (?<!\\)(\\\\)*" group
|
||||
add-highlighter shared/fish/single_string region "'" (?<!\\)(\\\\)*' fill string
|
||||
add-highlighter shared/fish/double_string region (?<!\\)(?:\\\\)*\K" (?<!\\)(\\\\)*" group
|
||||
add-highlighter shared/fish/single_string region (?<!\\)(?:\\\\)*\K' (?<!\\)(\\\\)*' fill string
|
||||
add-highlighter shared/fish/comment region '#' '$' fill comment
|
||||
|
||||
add-highlighter shared/fish/double_string/ fill string
|
||||
|
|
Loading…
Reference in New Issue
Block a user