diff options
| author | Andrey Orst <andreyorst@gmail.com> | 2020-10-23 22:18:07 +0300 |
|---|---|---|
| committer | Andrey Orst <andreyorst@gmail.com> | 2020-10-23 22:18:07 +0300 |
| commit | e7bae75ddfb676cc4c0ee22a9339a9a79c837c4a (patch) | |
| tree | 416721b8a3a8d4e7510f3a8c3cbceb89dda4a055 /.dir-locals.el | |
| parent | e16763df4de9e198adf48d746407d43fa5538221 (diff) | |
Changes
- add runtime check to into
- add sort of a test framework
- remove mapkv in favor of generalized mapv that works both for
sequences and tables
- add more tests
- update doc
Diffstat (limited to '.dir-locals.el')
| -rw-r--r-- | .dir-locals.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index e0d3e5a..8ad1001 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,7 +1,8 @@ ;;; Directory Local Variables ;;; For more information see (info "(emacs) Directory Variables") -((fennel-mode . ((eval . (put 'when-some 'fennel-indent-function 1)) +((fennel-mode . ((eval . (put 'test 'fennel-indent-function 'defun)) + (eval . (put 'when-some 'fennel-indent-function 1)) (eval . (put 'if-some 'fennel-indent-function 1)) (eval . (put 'when-let 'fennel-indent-function 1)) (eval . (put 'if-let 'fennel-indent-function 1)) |