emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r111793: ido, iswitchb, icomplete: Us


From: Jambunathan K
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111793: ido, iswitchb, icomplete: Use `C-.' and `C-, ' for cycling (Bug#13708)
Date: Sat, 16 Feb 2013 01:09:50 +0530
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111793 [merge]
committer: Jambunathan K <address@hidden>
branch nick: trunk
timestamp: Sat 2013-02-16 01:09:50 +0530
message:
  ido, iswitchb, icomplete: Use `C-.' and `C-,' for cycling (Bug#13708)
  
  * lisp/icomplete.el (icomplete-minibuffer-map): Unbind `C-s' and `C-r'.
  Bind `C-.' and `C-,' to `icomplete-forward-completions' and
  `icomplete-backward-completions'.
  
  * lisp/ido.el (ido-init-completion-maps): Bind `C-.' and `C-,' to
  `ido-next-match' and `ido-prev-match' resply.
  
  * lisp/iswitchb.el (iswitchb-read-buffer): Bind `C-.' and `C-,' to
  `iswitchb-next-match' and `iswitchb-prev-match' resply.
modified:
  lisp/ChangeLog
  lisp/icomplete.el
  lisp/ido.el
  lisp/iswitchb.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-02-15 06:35:54 +0000
+++ b/lisp/ChangeLog    2013-02-15 19:19:29 +0000
@@ -1,3 +1,15 @@
+2013-02-15  Jambunathan K  <address@hidden>
+
+       * iswitchb.el (iswitchb-read-buffer): Bind `C-.' and `C-,' to
+       `iswitchb-next-match' and `iswitchb-prev-match' resply.
+
+       * ido.el (ido-init-completion-maps): Bind `C-.' and `C-,' to
+       `ido-next-match' and `ido-prev-match' resply.
+
+       * icomplete.el (icomplete-minibuffer-map): Unbind `C-s' and `C-r'.
+       Bind `C-.' and `C-,' to `icomplete-forward-completions' and
+       `icomplete-backward-completions' (Bug#13708).
+
 2013-02-15  Michael Albinus  <address@hidden>
 
        * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.

=== modified file 'lisp/icomplete.el'
--- a/lisp/icomplete.el 2013-02-13 15:13:22 +0000
+++ b/lisp/icomplete.el 2013-02-15 19:19:29 +0000
@@ -168,8 +168,8 @@
   (let ((map (make-sparse-keymap)))
     (define-key map [?\M-\t] 'minibuffer-force-complete)
     (define-key map [?\C-j]  'minibuffer-force-complete-and-exit)
-    (define-key map [?\C-s]  'icomplete-forward-completions)
-    (define-key map [?\C-r]  'icomplete-backward-completions)
+    (define-key map [?\C-.]  'icomplete-forward-completions)
+    (define-key map [?\C-,]  'icomplete-backward-completions)
     map))
 
 (defun icomplete-forward-completions ()

=== modified file 'lisp/ido.el'
--- a/lisp/ido.el       2013-01-02 16:13:04 +0000
+++ b/lisp/ido.el       2013-02-15 19:19:29 +0000
@@ -1585,6 +1585,8 @@
     (define-key map "\C-p" 'ido-toggle-prefix)
     (define-key map "\C-r" 'ido-prev-match)
     (define-key map "\C-s" 'ido-next-match)
+    (define-key map [?\C-.] 'ido-next-match)
+    (define-key map [?\C-,] 'ido-prev-match)
     (define-key map "\C-t" 'ido-toggle-regexp)
     (define-key map "\C-z" 'ido-undo-merge-work-directory)
     (define-key map [(control ?\s)] 'ido-restrict-to-matches)

=== modified file 'lisp/iswitchb.el'
--- a/lisp/iswitchb.el  2013-01-01 09:11:05 +0000
+++ b/lisp/iswitchb.el  2013-02-15 19:19:29 +0000
@@ -471,6 +471,8 @@
     (define-key map "?" 'iswitchb-completion-help)
     (define-key map "\C-s" 'iswitchb-next-match)
     (define-key map "\C-r" 'iswitchb-prev-match)
+    (define-key map [?\C-.] 'iswitchb-next-match)
+    (define-key map [?\C-,] 'iswitchb-prev-match)
     (define-key map "\t" 'iswitchb-complete)
     (define-key map "\C-j" 'iswitchb-select-buffer-text)
     (define-key map "\C-t" 'iswitchb-toggle-regexp)


reply via email to

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