diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-09-11 22:31:56 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-09-17 16:42:03 -0400 |
commit | fc1b4756e36857e66986a30a6652ee988f8f30fd (patch) | |
tree | 0c759019be48cb58f9dfce779bfb9686ce67b75c /.dir-locals.el | |
parent | f1df78959a18aa1aed07e885051514938bd1fa92 (diff) | |
download | guix-fc1b4756e36857e66986a30a6652ee988f8f30fd.tar guix-fc1b4756e36857e66986a30a6652ee988f8f30fd.tar.gz |
.dir-locals.el: Update bug-reference configuration and document it.
(nil) <bug-reference-url-format>: Update URL. Add comment.
* doc/contributing.texi (The Perfect Setup): New "Viewing bugs within Emacs"
subsection.
Co-authored-by: Brian Cully <bjc@spork.org>
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 36714c1aa4..c63262848c 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -5,10 +5,12 @@ (tab-width . 8) (sentence-end-double-space . t) - ;; For use with 'bug-reference-prog-mode'. + ;; For use with 'bug-reference-prog-mode'. Extra bug-reference + ;; configuration should be done in your Emacs user configuration file; + ;; refer to (info (guix) The Perfect Setup). (bug-reference-bug-regexp . "\\(<https?://\\bugs\\.gnu\\.org/\\([0-9]+\\)>\\)") - (bug-reference-url-format . "https://bugs.gnu.org/%s") + (bug-reference-url-format . "https://issues.guix.gnu.org/%s") (eval . (add-to-list 'completion-ignored-extensions ".go")) |