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

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

[elpa] 116/117: Fix some undo bindings.


From: Matthew Fidler
Subject: [elpa] 116/117: Fix some undo bindings.
Date: Fri, 25 Jul 2014 13:24:42 +0000

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

commit f442b3b93c77406a5f797492b4ec2fe9bd67291e
Author: Matthew L. Fidler <address@hidden>
Date:   Fri Jul 25 08:01:26 2014 -0500

    Fix some undo bindings.
---
 ergoemacs-themes.el |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/ergoemacs-themes.el b/ergoemacs-themes.el
index 8417d80..36ae52d 100644
--- a/ergoemacs-themes.el
+++ b/ergoemacs-themes.el
@@ -227,7 +227,7 @@
   
   ;; (global-set-key (kbd "C-u") 'ergoemacs-universal-argument)
   (global-set-key (kbd "<M-backspace>") '(undo-tree-undo undo))
-  (global-set-key (kbd "C-z") 'undo)
+  (global-set-key (kbd "C-z") '(undo-tree-undo undo))
 
   ;; Take out undo-tree's redo bindings
   (when ergoemacs-theme-hook
@@ -670,14 +670,14 @@
   (global-set-key (kbd "C-_") nil)
   (global-set-key (kbd "C-/") nil)
   (global-set-key (kbd "C-x u") nil)
-  (global-set-key (kbd "M-z") 'undo)
+  (global-set-key (kbd "M-z") '(undo-tree-undo undo))
   
   ;; Fixed Component; Note that <timeout> is the actual function.
   (global-set-key (kbd "C-c <timeout>") 'ergoemacs-copy-line-or-region)
   (global-set-key (kbd "C-c") 'ergoemacs-ctl-c)
   (global-set-key (kbd "C-x <timeout>") 'ergoemacs-cut-line-or-region)
   (global-set-key (kbd "C-x") 'ergoemacs-ctl-x)
-  (global-set-key (kbd "C-z") 'undo)
+  (global-set-key (kbd "C-z") '(undo-tree-undo undo))
   (global-set-key (kbd "C-S-z") '(redo undo-tree-redo ergoemacs-redo))
   (global-set-key (kbd "C-y") '(redo undo-tree-redo ergoemacs-redo))
 
@@ -689,7 +689,8 @@
     (define-key isearch-mode-map (kbd "C-v") 'isearch-yank-kill))
   (define-key org-mode-map [remap ergoemacs-paste] 'ergoemacs-org-yank)
   (define-key org-mode-map [remap ergoemacs-paste] 'ergoemacs-org-yank)
-  (define-key browse-kill-ring-mode-map [remap undo] 
'browse-kill-ring-undo-other-window))
+  (define-key browse-kill-ring-mode-map [remap undo] 
'browse-kill-ring-undo-other-window)
+  (define-key browse-kill-ring-mode-map [remap undo-tree-undo] 
'browse-kill-ring-undo-other-window))
 
 (ergoemacs-theme-component search ()
   "Search and Replace"
@@ -863,7 +864,7 @@
   (global-set-key (kbd "<apps> v") 'ergoemacs-paste)
   (global-set-key (kbd "<apps> b") '(redo undo-tree-redo ergoemacs-redo))
   (global-set-key (kbd "<apps> t") 'switch-to-buffer)
-  (global-set-key (kbd "<apps> z") 'undo)
+  (global-set-key (kbd "<apps> z") '(undo-tree-undo undo))
   (global-set-key (kbd "<apps> r") goto-map))
 
 (ergoemacs-theme-component apps-toggle ()



reply via email to

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