branch: elpa/nix-mode
commit 8812eec39ad80a39b6bd3cf57d19361135613c05
Author: Matthew Bauer <[email protected]>
Commit: Matthew Bauer <[email protected]>
Allow using nix-indent-region without arguments
---
nix-mode.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/nix-mode.el b/nix-mode.el
index 6e4f5a7a86..d3a343e377 100644
--- a/nix-mode.el
+++ b/nix-mode.el
@@ -803,6 +803,7 @@ not to any other arguments."
"Indent on a whole region. Enabled by default.
START where to start in region.
END where to end the region."
+ (interactive (list (region-beginning) (region-end)))
(save-excursion
(goto-char start)
(while (< (point) end)