File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change 88
88
(message (format , message ,@format-args )))
89
89
nil ))
90
90
91
- (defun elixir-smie--at-dot-call ()
92
- (and (eq ?w (char-syntax (following-char )))
93
- (eq (char-before ) ?. )
94
- (not (eq (char-before (1- (point ))) ?. ))))
95
-
96
91
(defun elixir-smie--implicit-semi-p ()
97
92
(not (or (memq (char-before ) '(?\{ ?\[ ))
98
93
(looking-back elixir-smie--operator-regexp (- (point ) 3 ) t ))))
136
131
((smie-rule-sibling-p ) nil )
137
132
((smie-rule-hanging-p ) (smie-rule-parent elixir-smie-indent-basic))
138
133
(t elixir-smie-indent-basic)))
139
- ; ; If the parent token of `->' is `fn' , then we want to align to the
140
- ; ; parent, and offset by `elixir-smie-indent-basic' . Otherwise, indent
141
- ; ; normally. This helps us work with/indent anonymous function blocks
142
- ; ; correctly.
143
134
(`(:before . " ;" )
144
135
(cond
145
136
((smie-rule-parent-p " after" " catch" " def" " defmodule" " defp" " do" " else"
You can’t perform that action at this time.
0 commit comments