mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-21 16:08:07 +01:00
.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. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
This commit is contained in:
parent
01f18977c2
commit
02903cebbf
1 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
;;; SPDX-License-Identifier: GPL-3.0-or-later
|
;;; SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
;;; Copyright © 2024 Tomas Volf <~@wolfsden.cz>
|
||||||
;; Per-directory local variables for GNU Emacs 23 and later.
|
;; Per-directory local variables for GNU Emacs 23 and later.
|
||||||
|
|
||||||
((nil
|
((nil
|
||||||
|
@ -9,7 +10,9 @@
|
||||||
;; For use with 'bug-reference-prog-mode'.
|
;; For use with 'bug-reference-prog-mode'.
|
||||||
(bug-reference-url-format . "https://gitlab.com/nonguix/nonguix/issues/%s")
|
(bug-reference-url-format . "https://gitlab.com/nonguix/nonguix/issues/%s")
|
||||||
(bug-reference-bug-regexp
|
(bug-reference-bug-regexp
|
||||||
. "\\(#\\([0-9]+\\)\\)")))
|
. "\\(#\\([0-9]+\\)\\)")
|
||||||
|
|
||||||
|
(geiser-insert-actual-lambda . nil)))
|
||||||
(c-mode . ((c-file-style . "gnu")))
|
(c-mode . ((c-file-style . "gnu")))
|
||||||
(scheme-mode
|
(scheme-mode
|
||||||
.
|
.
|
||||||
|
|
Loading…
Reference in a new issue