branch: externals/ergoemacs-mode commit c4f81d2a11d37b313fc2c8e263c70f899eafb138 Author: Matthew Fidler <514778+mattfid...@users.noreply.github.com> Commit: Matthew Fidler <514778+mattfid...@users.noreply.github.com>
Fix for isearch-mode-map backward was missing --- ergoemacs-themes.el | 1 + 1 file changed, 1 insertion(+) diff --git a/ergoemacs-themes.el b/ergoemacs-themes.el index c1e7060..66e042e 100644 --- a/ergoemacs-themes.el +++ b/ergoemacs-themes.el @@ -1263,6 +1263,7 @@ In a terminal, this can be either arrow keys (e.g. meta+O A == <up>) or regular (ergoemacs-define-key isearch-mode-map (kbd "C-S-v") 'isearch-yank-pop) (ergoemacs-define-key isearch-mode-map (kbd "M-5") 'isearch-query-replace) (ergoemacs-define-key isearch-mode-map (kbd "M-;") 'isearch-repeat-forward) + (ergoemacs-define-key isearch-mode-map (kbd "M-:") 'isearch-repeat-backward) (ergoemacs-define-key isearch-mode-map (kbd "C-e") 'isearch-repeat-forward) (ergoemacs-define-key isearch-mode-map (kbd "C-M-d") 'isearch-repeat-forward) (ergoemacs-define-key isearch-mode-map (kbd "C-M-s") 'isearch-repeat-backward)