branch: elpa/zig-mode commit 87f4f16d482db2ad95166f5bd6d21bf7ef2b7000 Author: Xu Chunyang <m...@xuchunyang.me> Commit: Xu Chunyang <m...@xuchunyang.me>
Escape ) and ] to avoding breaking Emacs Lisp syntax table --- zig-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zig-mode.el b/zig-mode.el index 172899f..2fbb0c3 100644 --- a/zig-mode.el +++ b/zig-mode.el @@ -111,7 +111,7 @@ "null" "undefined" "this")) (defconst zig-electric-indent-chars - '( ?\; ?, ?) ?] ?} )) + '(?\; ?, ?\) ?\] ?})) (defgroup zig-mode nil "Support for Zig code."