summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorCayetano Santos <csantosb@inventati.org>2025-09-18 10:39:10 +0200
committerIan Eure <ian@retrospec.tv>2025-09-20 17:20:43 -0700
commit62cc713b0f9028c448e8a3f24262f3e9003c308c (patch)
treece72fa0c120d26e6e2ecc57b901f1227b924f498 /gnu
parentc3e0d76346d5573f37199e8786a166a04ef03c33 (diff)
gnu: Add emacs-quick-fasd.
* gnu/packages/emacs-xyz.scm (emacs-quick-fasd): New variable. Change-Id: I48632f2e0f7c5e62864ee73d083552600e19a6e9
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/emacs-xyz.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ab71cba8739..2d8aae762e2 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -41764,6 +41764,29 @@ supports generation of phonetic and numeric passwords.")
text into a QR Code and show it in a separate buffer.")
(license license:gpl3+)))
+(define-public emacs-quick-fasd
+ (package
+ (name "emacs-quick-fasd")
+ (version "1.0.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jamescherti/quick-fasd.el/")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1fsl6l67jf8fm5h6i5qxqvibzssbiyyjzchq3r5sbqry3d8yx3mk"))))
+ (build-system emacs-build-system)
+ (arguments (list #:tests? #f)) ;no tests
+ (home-page "https://github.com/jamescherti/quick-fasd.el/")
+ (synopsis "Navigate file system within Emacs by using @code{fasd}")
+ (description
+ "@code{quick-fasd} integrates the @code{fasd} tool within the Emacs
+environment, providing fast access to frequently used files and directories.")
+ (license license:gpl3+)))
+
(define-public emacs-quiet
(package
(name "emacs-quiet")