/gnu/build/

value='grep'>log msg
path: root/.dir-locals.el
e?id=6420015e6d3300e7a73da9a8253428d8386954d6'>home: Add gpg-agent service....
AgeCommit message (Collapse)Author
2023-03-17Revert gexp->derivation and computed-file indentation rules.Maxim Cournoyer
This reverts b1c25e2ce364741d1c257d3bb3ab773032807a80 and partially reverts 82daab42811a2e3c7684ebdf12af75ff0fa67b99, which means the computed-file and gexp->derivation procedures are now indented as normal procedures. Rationale: see the discussion at https://lists.gnu.org/archive/html/guix-devel/2023-03/msg00008.html. In a nutshell: the convention is to use special rules for special forms (macros), not for procedures. * .dir-locals.el (scheme-mode): Remove the special indentation rules for the computed-file and gexp->derivation procedures.
2023-03-05.dir-locals.el: Allow Guix root-dir overrides when working via Tramp.Brian Cully
* .dir-localsl.el: Add only the local part of the root directory to the guile search path. This lets you use Tramp to hack on a remote Guix checkout. Signed-off-by: Leo Famulari <leo@famulari.name>
2023-02-19.dir-locals: Add let-keywords indentation rules.Maxim Cournoyer
* .dir-locals.el (scheme-mode): Add let-keywords indentation rules.
2023-02-02.dir-locals.el: Adjust indentation rule for test-assertm.Maxim Cournoyer
* .dir-locals.el: Adjust the scheme-indent-function property for test-assertm, so that the two first arguments (the test name and the store variable) are indented as procedure arguments.
2023-02-02.dir-locals.el: Add indentation rule for computed-file.Maxim Cournoyer
* .dir-locals.el: Configure scheme-indent-function property for computed-file, so that its first argument (the file name) is indented as a procedure argument.
2022-09-07.dir-locals.el: Update yas snippets directory.Andrew Tropin
* .dir-locals.el (eval): Update yas snippets directory.
2022-09-05.dir-locals.el: Add .go to completion-ignored-extensions.Andrew Tropin
* .dir-locals.el (eval): Add .go to completion-ignored-extensions.
2022-09-05.dir-locals.el: Add guix yasnippets.Andrew Tropin
* .dir-locals.el (eval): Add guix yasnippets.
2022-07-10monads: Add 'mparameterize'.Ludovic Courtès
* etc/system-tests.scm (mparameterize): Move to... * guix/monads.scm (mparameterize): ... here. * tests/monads.scm ("mparameterize"): New test. * .dir-locals.el (c-mode): Add it.
2022-07-10.dir-locals.el: Restore Emacs 27 lisp-fill-paragraph behavior.Maxim Cournoyer
* .dir-locals.el (scheme-mode): Set fill-paragraph-function to a lisp-fill-paragraph version that matches that of Emacs 27.
2022-06-28.dir-locals.el: Properly indent 'wrap-script'.Maxim Cournoyer
* .dir-locals.el (scheme-mode): Indent 'wrap-script' the same way as 'wrap-program'.
2022-06-07.dir-locals: Adjust to bug-reference-mode in Emacs 28.Ludovic Courtès
* .dir-locals.el: Adjust 'bug-reference-bug-regexp' and 'bug-reference-url-format' to Emacs 28.
2022-03-06import: github: Reuse HTTP connection for the /tags URL fallback.Ludovic Courtès
* guix/import/github.scm (fetch-releases-or-tags): Call 'open-connection-for-uri' and reuse the same connection for the two 'http-fetch' calls. * .dir-locals.el (scheme-mode): Add 'call-with-port'.
2022-03-06tests: Add (guix http-client) tests.Ludovic Courtès
* tests/http-client.scm: New file. * Makefile.am (SCM_TESTS): Add it. * .dir-locals.el (scheme-mode): Add 'with-http-server'.
2022-01-29.dir-locals.el: Don't mess up indentation of prepend and append.Liliana Marie Prikler
The current version appears to assume special values in the first and second package, but it's either all lists (default append) or all package input expressions (inside modify-inputs), which themselves are either packages or lists consisting of a package and a string. * .dir-locals.el: Drop (eval . (put 'prepend 'scheme-indent-function 2)) and (eval . (put 'append 'scheme-indent-function 2)).
Ludovic Courtès
2023-04-07home: xdg-base-directories: Set correct value for XDG_STATE_HOME....Bruno Victal
2023-04-02services: replace bare serializers with (serializer ...)...Bruno Victal