diff options
| author | Andrey Listopadov <andreyorst@gmail.com> | 2021-02-22 19:43:18 +0300 |
|---|---|---|
| committer | Andrey Listopadov <andreyorst@gmail.com> | 2021-02-22 19:43:18 +0300 |
| commit | 129a3a5d48f429de174faa6368e9625dcfb65f9e (patch) | |
| tree | db7e24509dd5a1b294c678f4f6bcd6ff3c9fd70d /.dir-locals.el | |
| parent | e9b448d5fd3f074ee9de5066953c0becb891db19 (diff) | |
feat: add partition take and nthrest functions
Diffstat (limited to '.dir-locals.el')
| -rw-r--r-- | .dir-locals.el | 5 |
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))))) |