summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAnderson Torres <anderson.torres.8519@gmail.com>2025-11-14 14:13:31 -0300
committerLiliana Marie Prikler <liliana.prikler@gmail.com>2025-11-22 09:06:31 +0100
commitafe62cfdba9c6eeff457a278ac6bf01ac2a11a8e (patch)
tree342d36fb1af02ecd8e35598bc2bd6295a5a456c1 /gnu
parent8bc190bc85c7fd3bb9cc5cd92df411e0bcebd851 (diff)
gnu: emacs-bray: New package.
* gnu/packages/emacs-xyz.scm (emacs-bray): New variable. Change-Id: I0f68ec1b8c5c61b327eb1d292e5fe6ad62f4266e Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/emacs-xyz.scm35
1 files changed, 35 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 828cb85fdaf..421b92a963a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -35224,6 +35224,41 @@ inserting a new line with the same indentation level as the current line.")
(home-page "https://github.com/jamescherti/outline-indent.el")
(license license:gpl3+)))
+(define-public emacs-bray
+ ;; No tagged releases. Version taken from bray.el.
+ (let ((commit "59574fc07bcfaa67fbd096aa12b32aa088b16fef")
+ (revision "0"))
+ (package
+ (name "emacs-bray")
+ (version (git-version "0.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/ideasman42/emacs-bray/")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1y6js77l7b34fd3345g4pv8b9wzqvrbq4pdhxdy8m3k54s79glz2"))))
+ (build-system emacs-build-system)
+ (arguments
+ (list #:tests? #f)) ; No tests.
+ (synopsis "Lightweight modal editing framework")
+ (description
+ "This package provides a blank-slate for users to define their own
+modal editing workflow. It has the following features, among others:
+
+@itemize
+@item The user can define custom states (like, say, @emph{normal},
+@emph{insert} etc.) in any number at will;
+@item States may be buffer-local, allowing context-dependent configuration and
+behavior;
+@item States can hold settings such as cursor, keymaps and enter/exit hooks;
+@end itemize")
+ (home-page "https://codeberg.org/ideasman42/emacs-bray/")
+ (license license:gpl3+))))
+
(define-public emacs-repeat-fu
;; Upstream has no tags; release extracted from source code
(let ((commit "b91d55001cca71e5df7a9f665c7da73ab9f55efd")