diff options
| author | Tomas Volf <~@wolfsden.cz> | 2025-05-02 18:57:11 +0200 |
|---|---|---|
| committer | Christopher Baines <mail@cbaines.net> | 2025-05-26 16:07:56 +0100 |
| commit | 935705528d9b3119ea5bc79358c89fe5064666bf (patch) | |
| tree | 3ceaa7ff0f3b5bb2d478c96b9206a804ccd651cb /.dir-locals.el | |
| parent | 9f33cb88252f628899c1e11f8b72b9f0022804e1 (diff) | |
.dir-locals.el: Add geiser-insert-actual-lambda.
Guix project seems to prefer using lambda over λ. Express that preference for
Geiser users by setting the geiser-insert-actual-lambda variable to nil. In
the 0.31 version it will affect how geiser-insert-lambda works, making it
insert lambda string (instead of the current λ.
* .dir-locals.el (nil): Add geiser-insert-actual-lambda set to nil.
Change-Id: Iccbd4a8df194d60b96b33879c342cfeb224bcfbb
Signed-off-by: Christopher Baines <mail@cbaines.net>
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 69a5d8065e..ab440ac4a7 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -85,7 +85,8 @@ ;; Geiser ;; This allows automatically setting the `geiser-guile-load-path' ;; variable when using various Guix checkouts (e.g., via git worktrees). - (geiser-repl-per-project-p . t))) + (geiser-repl-per-project-p . t) + (geiser-insert-actual-lambda . nil))) (c-mode . ((c-file-style . "gnu"))) (scheme-mode |
