以下のコードは、正規表現の代わりに関数を使用してフォントロックルールを使用し$VAR
ます。この関数(syntax-ppss)
は、これを決定するために使用されます。
フォントロックルールは、prepend
フラグを使用して、既存の文字列の強調表示の上に自分自身を追加します。(多くのパッケージt
がこれに使用していることに注意してください。残念ながら、これは既存の強調表示のすべての側面を上書きしますprepend
。
(defun sh-script-extra-font-lock-is-in-double-quoted-string ()
"Non-nil if point in inside a double-quoted string."
(let ((state (syntax-ppss)))
(eq (nth 3 state) ?\")))
(defun sh-script-extra-font-lock-match-var-in-double-quoted-string (limit)
"Search for variables in double-quoted strings."
(let (res)
(while
(and (setq res
(re-search-forward
"\\$\\({#?\\)?\\([[:alpha:]_][[:alnum:]_]*\\|[-#?@!]\\)"
limit t))
(not (sh-script-extra-font-lock-is-in-double-quoted-string))))
res))
(defvar sh-script-extra-font-lock-keywords
'((sh-script-extra-font-lock-match-var-in-double-quoted-string
(2 font-lock-variable-name-face prepend))))
(defun sh-script-extra-font-lock-activate ()
(interactive)
(font-lock-add-keywords nil sh-script-extra-font-lock-keywords)
(if (fboundp 'font-lock-flush)
(font-lock-flush)
(when font-lock-mode
(with-no-warnings
(font-lock-fontify-buffer)))))
適切なフックに最後の関数を追加することで、これを使用して呼び出すことができます。例えば:
(add-hook 'sh-mode-hook 'sh-script-extra-font-lock-activate)
sh-mode
か?たぶん、Emacs自体に追加することができます。