gnu: emacs-embark: Update to 0.13.
* gnu/packages/emacs-xyz.scm (emacs-embark): Update to 0.13. [description]: Fix typo.master
parent
b5e7a64ccf
commit
aef5173222
|
@ -8207,17 +8207,20 @@ them easier to distinguish from other, less important buffers.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public emacs-embark
|
(define-public emacs-embark
|
||||||
|
;; XXX: Upstream did not tag last release. Commit hash below matches
|
||||||
|
;; version bump.
|
||||||
|
(let ((commit "bc3e4654329563ab28a96003610634c3a5e5a484"))
|
||||||
(package
|
(package
|
||||||
(name "emacs-embark")
|
(name "emacs-embark")
|
||||||
(version "0.12")
|
(version "0.13")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/oantolin/embark")
|
(url "https://github.com/oantolin/embark")
|
||||||
(commit version)))
|
(commit commit)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "16z7g6ynj4d64wsg49skhwypn5j6awlpsawbz61djsmpzlzjnv36"))
|
(base32 "1x6m6gc32z7kv9nkr8mwhi9mimbwhd37qyxpwj33hml9ygi8s7r6"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
@ -8231,16 +8234,16 @@ offering you relevant @emph{actions} to use on a @emph{target} determined by
|
||||||
the context.
|
the context.
|
||||||
|
|
||||||
In the minibuffer, the target is the current best completion candidate. In
|
In the minibuffer, the target is the current best completion candidate. In
|
||||||
the @code{*Completions*} buffer the target is the completion at point.
|
the @code{*Completions*} buffer the target is the completion at point. In
|
||||||
n a regular buffer, the target is the region if active, or else the file,
|
a regular buffer, the target is the region if active, or else the file, symbol
|
||||||
symbol or URL at point.
|
or URL at point.
|
||||||
|
|
||||||
The type of actions offered depend on the type of the target. For files you
|
The type of actions offered depend on the type of the target. For files you
|
||||||
get offered actions like deleting, copying, renaming, visiting in another
|
get offered actions like deleting, copying, renaming, visiting in another
|
||||||
window, running a shell command on the file, etc. For buffers the actions
|
window, running a shell command on the file, etc. For buffers the actions
|
||||||
include switching to or killing the buffer. For package names the actions
|
include switching to or killing the buffer. For package names the actions
|
||||||
include installing, removing or visiting the homepage.")
|
include installing, removing or visiting the homepage.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-prescient
|
(define-public emacs-prescient
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue