Skip to content

Commit b94f636

Browse files
committed
Fix highlighting hashmark in sigil
1 parent fea4caa commit b94f636

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

elixir-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ is used to limit the scan."
278278
(when (memq start-delim '(?' ?\"))
279279
(setq end (1+ end))
280280
(forward-char -1))
281-
(while (re-search-forward "[\"']" end t)
281+
(while (re-search-forward "[\"'#]" end t)
282282
(put-text-property (1- (point)) (point) 'syntax-table word-syntax))))))
283283

284284
(defun elixir-syntax-propertize-function (start end)

0 commit comments

Comments
 (0)