[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"
- [elpa] 56/117: Add ability to "flatten" a composed keymap; Flatten maps that are always modified, (continued)
- [elpa] 56/117: Add ability to "flatten" a composed keymap; Flatten maps that are always modified, Matthew Fidler, 2014/07/25
- [elpa] 58/117: Remove ergoemacs-read-modal-keymap function, Matthew Fidler, 2014/07/25
- [elpa] 53/117: Don't error on invalid menu., Matthew Fidler, 2014/07/25
- [elpa] 46/117: Install ergoemacs-read-default for every major mode, Matthew Fidler, 2014/07/25
- [elpa] 54/117: Fix menu keybinding preprocessing, Matthew Fidler, 2014/07/25
- [elpa] 57/117: Add first keyword, and use in minibuffer-setup-hook, Matthew Fidler, 2014/07/25
- [elpa] 60/117: Fix byte-compile warning, Matthew Fidler, 2014/07/25
- [elpa] 62/117: Update ergoemacs-mode-line custom description, Matthew Fidler, 2014/07/25
- [elpa] 61/117: Set ergoemacs-mode-line default to t, Matthew Fidler, 2014/07/25
- [elpa] 63/117: Attempt to fix Issue #278, Matthew Fidler, 2014/07/25
- [elpa] 67/117: Fix Issue #278,
Matthew Fidler <=
- [elpa] 59/117: Add ergoemacs-mode-line option, Matthew Fidler, 2014/07/25
- [elpa] 64/117: Add run-hook property, Matthew Fidler, 2014/07/25
- [elpa] 66/117: Allow keymaps to be copied before modifying them, Matthew Fidler, 2014/07/25
- [elpa] 69/117: Fix Issue #279, Matthew Fidler, 2014/07/25
- [elpa] 70/117: Fix unbound keys test, Matthew Fidler, 2014/07/25
- [elpa] 72/117: Add back emacs 23, Matthew Fidler, 2014/07/25
- [elpa] 71/117: Use flat keymaps (start supporting emacs 23?), Matthew Fidler, 2014/07/25
- [elpa] 73/117: Try to make compatible with emacs 23, Matthew Fidler, 2014/07/25
- [elpa] 74/117: Remove debugging for iswitch-buffer, Matthew Fidler, 2014/07/25
- [elpa] 65/117: Allow hooks to be run before modifying keymaps, Matthew Fidler, 2014/07/25