Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Nicolas Dudebout
Ohad Kammar
Paul Dempster
Peter Harpending
Reily Siegel
Samuel Memmel
Simon Pelchat
Steve Purcell
Expand Down
3 changes: 2 additions & 1 deletion idris-syntax.el
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ syntax table won't support, such as characters."
(goto-char begin)
(while (re-search-forward "\\\\(" end t)
(let ((open (match-beginning 0)))
(add-text-properties open (1+ open) '(syntax-table (1 . nil)))))))
(add-text-properties open (1+ open) '(syntax-table (1 . nil)))))
(funcall (syntax-propertize-rules ("\\(|||\\)" (1 "<"))) begin end)))

(defconst idris-font-lock-keyword-regexp
(regexp-opt (append idris-definition-keywords
Expand Down