This commit is contained in:
Tony Garnock-Jones 2019-04-25 23:39:18 +01:00
parent 70888543fa
commit 921fe7dfd2
1 changed files with 6 additions and 2 deletions

View File

@ -37,7 +37,7 @@
(modify-syntax-entry ?\r "> b" preserves-mode-syntax-table)
(modify-syntax-entry ?/ "_ 12b" preserves-mode-syntax-table)
(mapcar #'(lambda (x) (modify-syntax-entry x "_" preserves-mode-syntax-table))
'(?- ?_ ?$ ?? ?! ?* ?+ ?~ ?: ?< ?> ?=))
'(?- ?_ ?$ ?? ?! ?* ?+ ?~ ?: ?< ?> ?= ?|))
(mapcar #'(lambda (x) (modify-syntax-entry x "." preserves-mode-syntax-table))
'(?.))
@ -52,11 +52,14 @@
"+"
"-"
"/"
"="
"<"
">"
"<="
">="
"="
"=="
"!="
"|"
)
'symbols)
'font-lock-builtin-face)
@ -73,6 +76,7 @@
"import"
"let"
"namespace"
"operator"
"try"
"view"
"while"