emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] 67/117: Fix Issue #278


From: Matthew Fidler
Subject: [elpa] 67/117: Fix Issue #278
Date: Fri, 25 Jul 2014 13:24:18 +0000

mlf176f2 pushed a commit to branch externals/ergoemacs-mode
in repository elpa.

commit eccbe7aab72c059d321644accb90007b3eb0a4ee
Author: Matthew L. Fidler <address@hidden>
Date:   Fri Jul 18 10:04:19 2014 -0500

    Fix Issue #278
---
 ergoemacs-themes.el |   18 +++++++-----------
 1 files changed, 7 insertions(+), 11 deletions(-)

diff --git a/ergoemacs-themes.el b/ergoemacs-themes.el
index 482665b..ab9057e 100644
--- a/ergoemacs-themes.el
+++ b/ergoemacs-themes.el
@@ -471,11 +471,8 @@
   (when iswitchb-define-mode-map-hook
     :always t
     :modify-map t
-    :run-hook minibuffer-setup-hook
-    (define-key iswitchb-mode-map (kbd "<f11>") 'iswitchb-prev-match)
-    (define-key iswitchb-mode-map (kbd "<f12>") 'iswitchb-next-match)
-    (define-key iswitchb-mode-map (kbd "S-<f11>") 'iswitchb-prev-match)
-    (define-key iswitchb-mode-map (kbd "S-<f12>") 'iswitchb-next-match)))
+    (define-key iswitchb-mode-map [remap previous-history-element] 
'iswitchb-prev-match)
+    (define-key iswitchb-mode-map [remap next-history-element] 
'iswitchb-next-match)))
 
 (ergoemacs-theme-component f2-edit ()
   "Have <f2> edit"
@@ -581,9 +578,8 @@
   (when iswitchb-define-mode-map-hook 
     :always t
     :modify-keymap t
-    :run-hook minibuffer-setup-hook
-    (define-key iswitchb-mode-map (kbd "M-j") 'iswitchb-prev-match)
-    (define-key iswitchb-mode-map (kbd "M-l") 'iswitchb-next-match)))
+    (define-key iswitchb-mode-map [remap backward-char] 'iswitchb-prev-match)
+    (define-key iswitchb-mode-map [remap forward-char] 'iswitchb-next-match)))
 
 (ergoemacs-theme-component move-word ()
   "Moving around and deleting words"
@@ -790,12 +786,12 @@
     :full-shortcut-keymap t
     (define-key isearch-mode-map (kbd "M-?") 'isearch-toggle-regexp)
     (define-key isearch-mode-map (kbd "M-/") 'isearch-toggle-case-fold))
+  
   (when iswitchb-define-mode-map-hook
     :modify-map t
     :always t
-    :run-hook minibuffer-setup-hook
-    (define-key iswitchb-mode-map (kbd "M-?") 'iswitchb-toggle-case)
-    (define-key iswitchb-mode-map (kbd "M-/") 'iswitchb-toggle-regexp)))
+    (define-key iswitchb-mode-map [remap ergoemacs-toggle-camel-case] 
'iswitchb-toggle-case)
+    (define-key iswitchb-mode-map [remap ergoemacs-toggle-letter-case] 
'iswitchb-toggle-regexp)))
 
 (ergoemacs-theme-component select-items ()
   "Select Items"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]