diff options
| author | jgart <jgart@dismail.de> | 2026-01-31 13:02:09 -0500 |
|---|---|---|
| committer | jgart <jgart@dismail.de> | 2026-02-01 22:22:46 -0500 |
| commit | 9bedf9f826539b615ca8454d11fe1452f2fd6356 (patch) | |
| tree | 79ea4f699680a47007ad6a840132b962fbbe9bf7 /gnu | |
| parent | fb94a69d4308c75ddbea465fe9d0aee4d6edb42d (diff) | |
gnu: Add emacs-do-at-point.
* gnu/packages/emacs-xyz.scm (emacs-do-at-point): New variable.
Change-Id: Iec8d7fdf602aa99dcff8dca60695c37971bb9705
Signed-off-by: jgart <jgart@dismail.de>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index bbd3c12a8fd..4ac5ad2f47e 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -32588,6 +32588,25 @@ datastructures as needed, both for method parameters and return values, making using XML-RPC methods fairly transparent to the Lisp code.") (license license:gpl3+))) +(define-public emacs-do-at-point + (package + (name "emacs-do-at-point") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (string-append "https://elpa.gnu.org/packages/do-at-point-" + version ".tar")) + (sha256 + (base32 "0kirhg78ra6311hx1f1kpqhpxjxxg61gnzsh9j6id10f92h6m5gz")))) + (build-system emacs-build-system) + (home-page "https://elpa.gnu.org/packages/do-at-point.html") + (synopsis "Generic context-sensitive action dispatcher") + (description "This package provides a generalized +@code{find-file-at-point}, both in the sense that it can understand more than +just files, and do more than just open a file.") + (license license:gpl3+))) + (define-public emacs-xpm (package (name "emacs-xpm") |
