From 5a38c58c02a7ed3139a5b7215ffe89c01fd2bf17 Mon Sep 17 00:00:00 2001 From: Oleh Krehel Date: Fri, 26 Jun 2015 08:50:45 +0200 Subject: [PATCH] ace-window.el (aw-select): Bind `avy-translate-char-function' * ace-window.el (aw-select): Bind `avy-translate-char-function' to identity, just in case it was changed from outside. --- ace-window.el | 1 + 1 file changed, 1 insertion(+) diff --git a/ace-window.el b/ace-window.el index f528c4b..15ed357 100644 --- a/ace-window.el +++ b/ace-window.el @@ -309,6 +309,7 @@ Amend MODE-LINE to the mode line for the duration of the selection." (remove-hook 'post-command-hook 'helm--maybe-update-keymap) (unwind-protect (let* ((avy-handler-function aw-dispatch-function) + (avy-translate-char-function #'identity) (res (avy-read (avy-tree candidate-list aw-keys) #'aw--lead-overlay #'avy--remove-leading-chars)))