cmake-mode.el: syntax of '_' should be treated as symbol
Word commands, such as foward-word(M-f), backward-kill-word(M-backspace), don't work well like other major-modes if syntax of '_' is treated as "word". Tested-by: Guillaume Papin <guillaume.papin@parrot.com>
This commit is contained in:
parent
addff66d33
commit
30f14aebee
|
@ -202,7 +202,7 @@ the indentation. Otherwise it retains the same position on the line"
|
||||||
;; Keyword highlighting regex-to-face map.
|
;; Keyword highlighting regex-to-face map.
|
||||||
;;
|
;;
|
||||||
(defconst cmake-font-lock-keywords
|
(defconst cmake-font-lock-keywords
|
||||||
(list '("^[ \t]*\\(\\w+\\)[ \t]*(" 1 font-lock-function-name-face))
|
(list '("^[ \t]*\\([[:word:]_]+\\)[ \t]*(" 1 font-lock-function-name-face))
|
||||||
"Highlighting expressions for CMAKE mode."
|
"Highlighting expressions for CMAKE mode."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -241,7 +241,6 @@ the indentation. Otherwise it retains the same position on the line"
|
||||||
; Create the syntax table
|
; Create the syntax table
|
||||||
(setq cmake-mode-syntax-table (make-syntax-table))
|
(setq cmake-mode-syntax-table (make-syntax-table))
|
||||||
(set-syntax-table cmake-mode-syntax-table)
|
(set-syntax-table cmake-mode-syntax-table)
|
||||||
(modify-syntax-entry ?_ "w" cmake-mode-syntax-table)
|
|
||||||
(modify-syntax-entry ?\( "()" cmake-mode-syntax-table)
|
(modify-syntax-entry ?\( "()" cmake-mode-syntax-table)
|
||||||
(modify-syntax-entry ?\) ")(" cmake-mode-syntax-table)
|
(modify-syntax-entry ?\) ")(" cmake-mode-syntax-table)
|
||||||
(modify-syntax-entry ?# "<" cmake-mode-syntax-table)
|
(modify-syntax-entry ?# "<" cmake-mode-syntax-table)
|
||||||
|
|
Loading…
Reference in New Issue