summaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorAndrey Listopadov <andreyorst@gmail.com>2021-02-22 19:43:18 +0300
committerAndrey Listopadov <andreyorst@gmail.com>2021-02-22 19:43:18 +0300
commit129a3a5d48f429de174faa6368e9625dcfb65f9e (patch)
treedb7e24509dd5a1b294c678f4f6bcd6ff3c9fd70d /.dir-locals.el
parente9b448d5fd3f074ee9de5066953c0becb891db19 (diff)
feat: add partition take and nthrest functions
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index dee5d6a..32da19e 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -41,4 +41,7 @@
(eval . (put 'if-let 'fennel-indent-function 1))
(eval . (put 'fn* 'fennel-indent-function 'defun))
(eval . (put 'fn* 'fennel-doc-string-elt 2))
- (eval . (put 'defmulti 'fennel-doc-string-elt 2)))))
+ (eval . (put 'defmulti 'fennel-doc-string-elt 2))
+ (eval . (put 'try 'fennel-indent-function 0))
+ (eval . (put 'catch 'fennel-indent-function 1))
+ (eval . (put 'finally 'fennel-indent-function 0)))))