diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2014-12-22 21:57:06 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2014-12-22 21:57:06 +0100 |
commit | d8eaa50aed67af1666c3e45b719510253800ca8d (patch) | |
tree | 98d4563eb29fecdf7a8fcf3e0d6cf61c0d1977df /syntax/ruby.vim | |
parent | 8e26e6e963434108d418557cd48cf6604de30c0d (diff) | |
download | vim-polyglot-d8eaa50aed67af1666c3e45b719510253800ca8d.tar.gz vim-polyglot-d8eaa50aed67af1666c3e45b719510253800ca8d.zip |
Update
Diffstat (limited to 'syntax/ruby.vim')
-rw-r--r-- | syntax/ruby.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/syntax/ruby.vim b/syntax/ruby.vim index 7d46a55b..a570b14c 100644 --- a/syntax/ruby.vim +++ b/syntax/ruby.vim @@ -130,8 +130,8 @@ syn region rubyRegexp matchgroup=rubyRegexpDelimiter start="%r\[" end="\][io syn region rubyRegexp matchgroup=rubyRegexpDelimiter start="%r(" end=")[iomxneus]*" skip="\\\\\|\\)" contains=@rubyRegexpSpecial fold " Normal String and Shell Command Output -syn region rubyString matchgroup=rubyStringDelimiter start="\"" end="\"" skip="\\\\\|\\\"" contains=@rubyStringSpecial,@Spell fold -syn region rubyString matchgroup=rubyStringDelimiter start="'" end="'" skip="\\\\\|\\'" contains=rubyQuoteEscape,@Spell fold +syn region rubyString matchgroup=rubyStringDelimiter start="\"" end="\"" skip="\\\\\|\\\"" contains=@rubyStringSpecial fold +syn region rubyString matchgroup=rubyStringDelimiter start="'" end="'" skip="\\\\\|\\'" contains=rubyQuoteEscape fold syn region rubyString matchgroup=rubyStringDelimiter start="`" end="`" skip="\\\\\|\\`" contains=@rubyStringSpecial fold " Generalized Single Quoted String, Symbol and Array of Strings |