gnu: emacs-ace-window: Update to 0.9.0-1.a534492.

* gnu/packages/emacs-xyz.scm (emacs-ace-window): Update to 0.9.0-1.a534492.
This commit is contained in:
Brian Leung 2019-09-23 19:58:50 +02:00
parent 6764870498
commit 4343eebfc9
No known key found for this signature in database
GPG Key ID: 3ADC75F013D678F9
1 changed files with 24 additions and 20 deletions

View File

@ -5202,29 +5202,33 @@ windows.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-ace-window (define-public emacs-ace-window
(package ;; last release version is from 2015
(name "emacs-ace-window") (let ((commit "a5344925e399e1f015721cda6cf5db03c90ab87a")
(version "0.9.0") (revision "1"))
(source (package
(origin (name "emacs-ace-window")
(method git-fetch) (version (git-version "0.9.0" revision commit))
(uri (git-reference (source
(url "https://github.com/abo-abo/ace-window.git") (origin
(commit version))) (method git-fetch)
(file-name (git-file-name name version)) (uri (git-reference
(sha256 (url "https://github.com/abo-abo/ace-window.git")
(base32 "07mcdzjmgrqdvjs94f2n5bkrf5vrq2fwzz256wbm3wzqxqkfy1q6")))) (commit commit)))
(build-system emacs-build-system) (file-name (git-file-name name version))
(propagated-inputs (sha256
`(("emacs-avy" ,emacs-avy))) (base32
(home-page "https://github.com/abo-abo/ace-window") "18jm8gfgnf6ja9aarws5650lw2zfi3wdwc5j8r5ijn5fcqhfy7rc"))))
(synopsis "Quickly switch windows in Emacs") (build-system emacs-build-system)
(description (propagated-inputs
"@code{ace-window} is meant to replace @code{other-window}. `(("emacs-avy" ,emacs-avy)))
(home-page "https://github.com/abo-abo/ace-window")
(synopsis "Quickly switch windows in Emacs")
(description
"@code{ace-window} is meant to replace @code{other-window}.
In fact, when there are only two windows present, @code{other-window} is In fact, when there are only two windows present, @code{other-window} is
called. If there are more, each window will have its first character called. If there are more, each window will have its first character
highlighted. Pressing that character will switch to that window.") highlighted. Pressing that character will switch to that window.")
(license license:gpl3+))) (license license:gpl3+))))
(define-public emacs-iedit (define-public emacs-iedit
;; Last release version was in 2016. ;; Last release version was in 2016.