Fix cmake-ts-mode font-lock queries
This commit in tree-sitter-cmake removed angle brackets:
a414a4c83d
* lisp/progmodes/cmake-ts-mode.el
(cmake-ts-mode--font-lock-settings): Remove angle brackets.
This commit is contained in:
parent
93755ea1a6
commit
4def541bbf
1 changed files with 10 additions and 1 deletions
|
@ -22,6 +22,15 @@
|
|||
;; You should have received a copy of the GNU General Public License
|
||||
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
;;; Tree-sitter language versions
|
||||
;;
|
||||
;; cmake-ts-mode is known to work with the following languages and version:
|
||||
;; - tree-sitter-cmake: e409ae33f00e04cde30f2bcffb979caf1a33562a
|
||||
;;
|
||||
;; We try our best to make builtin modes work with latest grammar
|
||||
;; versions, so a more recent grammar version has a good chance to work.
|
||||
;; Send us a bug report if it doesn't.
|
||||
|
||||
;;; Commentary:
|
||||
;;
|
||||
|
||||
|
@ -175,7 +184,7 @@ Check if a node type is available, then return the right font lock rules."
|
|||
:feature 'misc-punctuation
|
||||
;; Don't override strings.
|
||||
:override 'nil
|
||||
'((["$" "{" "}" "<" ">"]) @font-lock-misc-punctuation-face)
|
||||
'((["$" "{" "}"]) @font-lock-misc-punctuation-face)
|
||||
|
||||
:language 'cmake
|
||||
:feature 'variable
|
||||
|
|
Loading…
Add table
Reference in a new issue