branch: elpa/nix-mode
commit 0ad464e25a157a2521213ab74f248601a9320c61
Author: Matthew Bauer <[email protected]>
Commit: Matthew Bauer <[email protected]>
Add ']' to match closing parens.
---
nix-mode.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/nix-mode.el b/nix-mode.el
index 0ba098bfc2..71503b7867 100644
--- a/nix-mode.el
+++ b/nix-mode.el
@@ -208,6 +208,7 @@ If a close brace `}' ends an antiquote, the next character
begins a string."
(or ;; any of these should -1 indent level
(looking-at ")")
(looking-at "}")
+ (looking-at "]")
(looking-at "''")
(looking-at ",")
(looking-at "in[[:space:]]")