You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(modify-syntax-entry?_"_" table) ; ?_ can be used in variable and command names
46
-
(modify-syntax-entry?\\"\\" table) ; ?\\ is an escape sequence character
47
-
(modify-syntax-entry?$"'" table) ; ?$ is an expression prefix; Used in highlighting $VARIABLES, ${SUBSTITUTED_VARIABLES}, and $(substituted commands) embedded in double-quoted strings
41
+
(modify-syntax-entry?'"\"'" table) ; ?' is a string delimiter
42
+
(modify-syntax-entry?\""\"" table) ; ?\" is a string delimiter
(modify-syntax-entry?_"_" table) ; ?_ can be used in variable and command names
46
+
(modify-syntax-entry?\\"\\" table) ; ?\\ is an escape sequence character
47
+
(modify-syntax-entry?$"'" table) ; ?$ is an expression prefix; Used in highlighting $VARIABLES, ${SUBSTITUTED_VARIABLES}, and $(substituted commands) embedded in double-quoted strings
48
48
table))
49
49
50
50
;; Adapted from code generously donated by Fuco1 (https://github.com/Fuco1; see: https://fuco1.github.io/2017-06-11-Font-locking-with-custom-matchers.html)
0 commit comments