[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/ido.el
From: |
Kim F . Storm |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/ido.el |
Date: |
Fri, 15 Jul 2005 08:53:18 -0400 |
Index: emacs/lisp/ido.el
diff -c emacs/lisp/ido.el:1.67 emacs/lisp/ido.el:1.68
*** emacs/lisp/ido.el:1.67 Fri Jul 15 09:19:53 2005
--- emacs/lisp/ido.el Fri Jul 15 12:53:17 2005
***************
*** 101,109 ****
;; The list in {...} are the matching buffers, most recent first
;; (buffers visible in the current frame are put at the end of the
;; list by default). At any time I can select the item at the head of
! ;; the list by pressing RET. I can also bring the put the first
! ;; element at the end of the list by pressing C-s or [right], or put
! ;; the last element at the head of the list by pressing C-r or [left].
;;
;; The item in [...] indicates what can be added to my input by
;; pressing TAB. In this case, I will get "3" added to my input.
--- 101,109 ----
;; The list in {...} are the matching buffers, most recent first
;; (buffers visible in the current frame are put at the end of the
;; list by default). At any time I can select the item at the head of
! ;; the list by pressing RET. I can also put the first element at the
! ;; end of the list by pressing C-s or [right], or bring the last
! ;; element to the head of the list by pressing C-r or [left].
;;
;; The item in [...] indicates what can be added to my input by
;; pressing TAB. In this case, I will get "3" added to my input.
***************
*** 210,217 ****
;; Example:
;;
;; If you have again two Buffers "123456" and "123" then hitting "2" does
! ;; not match because "2" is not a PREFIX in any of the buffer-names. This
! ;; is the only difference between the substring and prefix matching.
;; Flexible matching
;; -----------------
--- 210,216 ----
;; Example:
;;
;; If you have again two Buffers "123456" and "123" then hitting "2" does
! ;; not match because "2" is not a PREFIX in any of the buffer-names.
;; Flexible matching
;; -----------------
***************
*** 236,249 ****
;;
;; There is limited provision for regexp matching within ido,
;; enabled through `ido-enable-regexp' (toggle with C-t).
! ;; This allows you to type `c$' for example and see all file names
! ;; ending in `c'. This facility is quite limited though in two
! ;; respects. First, you can't currently type in expressions like
! ;; `[0-9]' directly -- you have to type them in when ido-enable-regexp
! ;; is nil and then toggle on the regexp functionality. Likewise,
! ;; don't enter an expression containing `\' in regexp mode. If you
! ;; try, ido gets confused, so just hit C-g and try again. Secondly,
! ;; no completion mechanism is currently offered with regexp searching.
;; Customization
--- 235,244 ----
;;
;; There is limited provision for regexp matching within ido,
;; enabled through `ido-enable-regexp' (toggle with C-t).
! ;; This allows you to type `[ch]$' for example and see all file names
! ;; ending in `c' or `h'.
! ;;
! ;; Note: ido-style completion is inhibited when you enable regexp matching.
;; Customization
- [Emacs-diffs] Changes to emacs/lisp/ido.el, Lute Kamstra, 2005/07/04
- [Emacs-diffs] Changes to emacs/lisp/ido.el, Kim F . Storm, 2005/07/08
- [Emacs-diffs] Changes to emacs/lisp/ido.el, Kim F . Storm, 2005/07/08
- [Emacs-diffs] Changes to emacs/lisp/ido.el, Kim F . Storm, 2005/07/15
- [Emacs-diffs] Changes to emacs/lisp/ido.el,
Kim F . Storm <=
- [Emacs-diffs] Changes to emacs/lisp/ido.el, Kim F . Storm, 2005/07/15
- [Emacs-diffs] Changes to emacs/lisp/ido.el, Kim F . Storm, 2005/07/16