diff options
author | David Thompson <davet@gnu.org> | 2015-05-25 21:12:15 -0400 |
---|---|---|
committer | David Thompson <davet@gnu.org> | 2015-05-25 21:12:15 -0400 |
commit | 333a5fd740c02d3bfa962fb8d5141788b93a4946 (patch) | |
tree | 74fd0f114aebb0b509fed27c2531a056d326c07f /.dir-locals.el | |
parent | 101a426a269c2f038068514f67cd0605f3f54698 (diff) |
Add show, hide, and remove subcommands.
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000..e2cc424 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,8 @@ +((scheme-mode + . + ((indent-tabs-mode . nil) + (eval . (put 'call-with-pipe* 'scheme-indent-function 2)) + (eval . (put 'call-with-output-pipe* 'scheme-indent-function 1)) + (eval . (put 'call-with-input-pipe* 'scheme-indent-function 1)) + (eval . (put 'call-with-encrypted-output-file 'scheme-indent-function 2)) + (eval . (put 'call-with-decrypted-input-file 'scheme-indent-function 1))))) |