Skip to content

Commit d9737a9

Browse files
committed
Execute helm-keyboard-quit in helm buffers
Previous function was causing a nasty bug with Magit when pushing to origin and aborting the helm buffer with fd --> the push was not aborted!
1 parent 533e8a5 commit d9737a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

evil-escape.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ with a key sequence."
209209
"Return the function to escape from normal state."
210210
(cond
211211
((and (fboundp 'helm-alive-p) (helm-alive-p))
212-
'abort-recursive-edit)
212+
'helm-keyboard-quit)
213213
((bound-and-true-p isearch-mode) 'isearch-abort)
214214
((window-minibuffer-p) 'abort-recursive-edit)))
215215

0 commit comments

Comments
 (0)