Skip to content

Commit fe313d3

Browse files
committed
Merge pull request #307 from aaronjensen/patch-1
Include - in punctuation syntax class
2 parents 2865589 + 953c18a commit fe313d3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

elixir-smie.el

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,12 @@
8383
;; Note that ?_ might be better as class "_", but either seems to
8484
;; work:
8585
(modify-syntax-entry ?| "." table)
86+
(modify-syntax-entry ?- "." table)
87+
(modify-syntax-entry ?+ "." table)
88+
(modify-syntax-entry ?* "." table)
89+
(modify-syntax-entry ?/ "." table)
90+
(modify-syntax-entry ?< "." table)
91+
(modify-syntax-entry ?> "." table)
8692
(modify-syntax-entry ?_ "_" table)
8793
(modify-syntax-entry ?? "w" table)
8894
(modify-syntax-entry ?~ "w" table)

0 commit comments

Comments
 (0)