emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r101874: (ibuffer-mode-map): Don't re


From: Lars Magne Ingebrigtsen
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r101874: (ibuffer-mode-map): Don't redefine the cursor keys, since that's too annoying.
Date: Sat, 09 Oct 2010 17:44:44 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 101874
committer: Lars Magne Ingebrigtsen <address@hidden>
branch nick: trunk
timestamp: Sat 2010-10-09 17:44:44 +0200
message:
  (ibuffer-mode-map): Don't redefine the cursor keys, since that's too annoying.
  
  Move the filter groups commands to TAB/backtab.
modified:
  lisp/ChangeLog
  lisp/ibuffer.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-10-09 13:27:24 +0000
+++ b/lisp/ChangeLog    2010-10-09 15:44:44 +0000
@@ -1,5 +1,9 @@
 2010-10-09  Lars Magne Ingebrigtsen  <address@hidden>
 
+       * ibuffer.el (ibuffer-mode-map): Don't redefine the cursor keys,
+       since that's too annoying.  Move the filter groups commands to
+       TAB/backtab.
+
        * epa.el (epa-passphrase-callback-function): Say what we're
        querying the password for.
 

=== modified file 'lisp/ibuffer.el'
--- a/lisp/ibuffer.el   2010-10-09 13:23:29 +0000
+++ b/lisp/ibuffer.el   2010-10-09 15:44:44 +0000
@@ -433,10 +433,8 @@
 
     ;; immediate operations
     (define-key map (kbd "n") 'ibuffer-forward-line)
-    (define-key map (kbd "<down>") 'ibuffer-forward-line)
     (define-key map (kbd "SPC") 'forward-line)
     (define-key map (kbd "p") 'ibuffer-backward-line)
-    (define-key map (kbd "<up>") 'ibuffer-backward-line)
     (define-key map (kbd "M-}") 'ibuffer-forward-next-marked)
     (define-key map (kbd "M-{") 'ibuffer-backwards-next-marked)
     (define-key map (kbd "l") 'ibuffer-redisplay)
@@ -477,9 +475,9 @@
     (define-key map (kbd "/ /") 'ibuffer-filter-disable)
 
     (define-key map (kbd "M-n") 'ibuffer-forward-filter-group)
-    (define-key map (kbd "<right>") 'ibuffer-forward-filter-group)
+    (define-key map "\t" 'ibuffer-forward-filter-group)
     (define-key map (kbd "M-p") 'ibuffer-backward-filter-group)
-    (define-key map (kbd "<left>") 'ibuffer-backward-filter-group)
+    (define-key map [backtab] 'ibuffer-backward-filter-group)
     (define-key map (kbd "M-j") 'ibuffer-jump-to-filter-group)
     (define-key map (kbd "C-k") 'ibuffer-kill-line)
     (define-key map (kbd "C-y") 'ibuffer-yank)


reply via email to

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