We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51e52ed commit 06dce8eCopy full SHA for 06dce8e
elixir-smie.el
@@ -33,20 +33,6 @@
33
(modify-syntax-entry ?\n "." table)
34
table))
35
36
-(defun elixir-smie-token-navigator (regex-match match-bound char-position sexp-movement)
37
- (let ((found-token-class (find-if
38
- (lambda (class-def)
39
- (funcall regex-match (symbol-value (car class-def))))
40
- elixir-syntax-class-names)))
41
- (cond ((eq ?\n (funcall char-position))
42
- "\n")
43
- (found-token-class
44
- (goto-char (funcall match-bound 0))
45
- (cdr found-token-class))
46
- ((when (= ?\" (char-syntax (funcall char-position)))
47
- (funcall sexp-movement)
48
- "STRING")))))
49
-
50
(setq elixir-smie-block-intro-keywords '(do else catch after rescue -> COMMA))
51
52
(defun elixir-smie-next-token-no-lookaround (forwardp nested)
0 commit comments