mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
Update to Transient v0.4.0
Or strictly speaking v0.4.0-1-g428576a4.)
This commit is contained in:
parent
b8bcd42cab
commit
60d5a015d1
@ -31,7 +31,7 @@ General Public License for more details.
|
||||
@finalout
|
||||
@titlepage
|
||||
@title Transient User and Developer Manual
|
||||
@subtitle for version 0.3.7.50
|
||||
@subtitle for version 0.4.0
|
||||
@author Jonas Bernoulli
|
||||
@page
|
||||
@vskip 0pt plus 1filll
|
||||
@ -74,7 +74,7 @@ that hurdle is Psionic K's interactive tutorial, available at
|
||||
@end quotation
|
||||
|
||||
@noindent
|
||||
This manual is for Transient version 0.3.7.50.
|
||||
This manual is for Transient version 0.4.0.
|
||||
|
||||
@insertcopying
|
||||
@end ifnottex
|
||||
|
@ -6,7 +6,7 @@
|
||||
;; URL: https://github.com/magit/transient
|
||||
;; Keywords: extensions
|
||||
|
||||
;; Package-Version: 0.3.7.50
|
||||
;; Package-Version: 0.4.0
|
||||
;; Package-Requires: ((emacs "26.1"))
|
||||
|
||||
;; SPDX-License-Identifier: GPL-3.0-or-later
|
||||
@ -3934,8 +3934,13 @@ search instead."
|
||||
(defun transient-isearch-abort ()
|
||||
"Like `isearch-abort' but adapted for `transient'."
|
||||
(interactive)
|
||||
(condition-case nil (isearch-abort) (quit))
|
||||
(transient--isearch-exit))
|
||||
(let ((around (lambda (fn)
|
||||
(condition-case nil (funcall fn) (quit))
|
||||
(transient--isearch-exit))))
|
||||
(advice-add 'isearch-cancel :around around)
|
||||
(unwind-protect
|
||||
(isearch-abort)
|
||||
(advice-remove 'isearch-cancel around))))
|
||||
|
||||
(defun transient--isearch-setup ()
|
||||
(select-window transient--window)
|
||||
|
Loading…
Reference in New Issue
Block a user