Skip to content

Commit

Permalink
Execute helm-keyboard-quit in helm buffers
Browse files Browse the repository at this point in the history
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!
  • Loading branch information
syl20bnr committed Sep 27, 2015
1 parent 533e8a5 commit d9737a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evil-escape.el
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ with a key sequence."
"Return the function to escape from normal state."
(cond
((and (fboundp 'helm-alive-p) (helm-alive-p))
'abort-recursive-edit)
'helm-keyboard-quit)
((bound-and-true-p isearch-mode) 'isearch-abort)
((window-minibuffer-p) 'abort-recursive-edit)))

Expand Down

0 comments on commit d9737a9

Please sign in to comment.