[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#61752] [PATCH 2/8] gnu: Add emacs-cfrs.
From: |
Rostislav Svoboda |
Subject: |
[bug#61752] [PATCH 2/8] gnu: Add emacs-cfrs. |
Date: |
Fri, 24 Feb 2023 15:18:13 +0100 |
---
gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a3103ac3d4..54aad0bf7b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -264,6 +264,34 @@ (define-module (gnu packages emacs-xyz)
;;; Emacs hacking.
;;;
+(define-public emacs-cfrs
+ (package
+ (name "emacs-cfrs")
+ (version "1.6.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Alexander-Miller/cfrs")
+ (commit "f3a21f237b2a54e6b9f8a420a9da42b4f0a63121")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1vf5zm82sx3m1yvq73km8ajapv6rnz41b1jrsif7kh0ijh9vk3qi"))))
+ (build-system emacs-build-system)
+ (inputs (list
+ emacs-s
+ emacs-dash
+ emacs-posframe))
+ (home-page "https://github.com/Alexander-Miller/cfrs")
+ (synopsis "Child Frame Read String")
+ (description
+ "Simple alternative to read-string that allows reading input via a small
+child-frame spawned at the position of the cursor. Its goal is to make the
+string input interface closer to those used in modern GUI programs and to help
+the user with having to switch focus from whatever they are doing currently to
+look at the minibuffer.")
+ (license license:gpl3+)))
+
(define-public emacs-geiser
(package
(name "emacs-geiser")
--
2.39.1
- [bug#61753] [PATCH 1/8] gnu: Add emacs-font-lock+., Rostislav Svoboda, 2023/02/24
- [bug#61755] [PATCH 4/8] gnu: Add emacs-ace-jump-helm-line., Rostislav Svoboda, 2023/02/24
- [bug#61754] [PATCH 3/8] gnu: Add emacs-ac-ispell., Rostislav Svoboda, 2023/02/24
- [bug#61756] [PATCH 5/8] gnu: Add emacs-xcscope., Rostislav Svoboda, 2023/02/24
- [bug#61752] [PATCH 2/8] gnu: Add emacs-cfrs.,
Rostislav Svoboda <=
- [bug#61759] [PATCH 8/8] gnu: Add emacs-afternoon-theme., Rostislav Svoboda, 2023/02/24
- [bug#61757] [PATCH 6/8] gnu: Add emacs-ac-php., Rostislav Svoboda, 2023/02/24
- [bug#61758] [PATCH 7/8] gnu: Add emacs-cider-eval-sexp-fu., Rostislav Svoboda, 2023/02/24