Merge pull request #2354 from zed-industries/nate/fix-embedded-highlight-in-ruby

Nate Butler created

Fix embedded highlight in ruby

Change summary

crates/zed/src/languages/ruby/highlights.scm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

Detailed changes

crates/zed/src/languages/ruby/highlights.scm 🔗

@@ -109,10 +109,6 @@
   (false)
 ] @constant.builtin
 
-(interpolation
-  "#{" @punctuation.special
-  "}" @punctuation.special) @embedded
-
 (comment) @comment
 
 ; Operators
@@ -178,4 +174,8 @@
   "}"
   "%w("
   "%i("
-] @punctuation.bracket
+] @punctuation.bracket
+
+(interpolation
+  "#{" @punctuation.special
+  "}" @punctuation.special) @embedded