emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/nix-mode c34990e956 371/500: Remove references to /gnu in


From: ELPA Syncer
Subject: [nongnu] elpa/nix-mode c34990e956 371/500: Remove references to /gnu in nix-prettify-mode
Date: Sat, 29 Jan 2022 08:27:23 -0500 (EST)

branch: elpa/nix-mode
commit c34990e95669679bb7f82430322ed0539aaa3ca4
Author: Matthew Bauer <mjbauer95@gmail.com>
Commit: Matthew Bauer <mjbauer95@gmail.com>

    Remove references to /gnu in nix-prettify-mode
---
 nix-prettify-mode.el | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/nix-prettify-mode.el b/nix-prettify-mode.el
index 99fa9e270c..df81e4b3ba 100644
--- a/nix-prettify-mode.el
+++ b/nix-prettify-mode.el
@@ -15,8 +15,8 @@
 
 ;; This package provides minor-mode for prettifying Nix store file
 ;; names — i.e., after enabling `nix-prettify-mode',
-;; '/gnu/store/72f54nfp6g1hz873w8z3gfcah0h4nl9p-foo-0.1' names will be
-;; replaced with '/gnu/store/…-foo-0.1' in the current buffer.  There is
+;; '/nix/store/72f54nfp6g1hz873w8z3gfcah0h4nl9p-foo-0.1' names will be
+;; replaced with '/nix/store/…-foo-0.1' in the current buffer.  There is
 ;; also `global-nix-prettify-mode' for global prettifying.
 
 ;; To install, add the following to your Emacs init file:
@@ -71,10 +71,9 @@ disabling `nix-prettify-mode' a little faster."
 (defcustom nix-prettify-regexp
   ;; The following file names / URLs should be abbreviated:
 
-  ;; /gnu/store/…-foo-0.1
   ;; /nix/store/…-foo-0.1
-  ;; http://hydra.gnu.org/nar/…-foo-0.1
-  ;; http://hydra.gnu.org/log/…-foo-0.1
+  ;; http://hydra.nixos.org/nar/…-foo-0.1
+  ;; http://hydra.nixos.org/log/…-foo-0.1
 
   (rx "/" (or "store" "nar" "log") "/"
       ;; Hash-parts do not include "e", "o", "u" and "t".  See base32Chars
@@ -91,8 +90,8 @@ Example of a \"deeper\" prettifying:
         nix-prettify-regexp-group 0)
 
 This will transform
-'/gnu/store/72f54nfp6g1hz873w8z3gfcah0h4nl9p-foo-0.1' into
-'/gnu/…-foo-0.1'"
+'/nix/store/72f54nfp6g1hz873w8z3gfcah0h4nl9p-foo-0.1' into
+'/nix/…-foo-0.1'"
   :type 'regexp
   :group 'nix-prettify)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]