diff options
| -rw-r--r-- | lisp/ido.el | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/lisp/ido.el b/lisp/ido.el index f3beb554568..093012dc229 100644 --- a/lisp/ido.el +++ b/lisp/ido.el | |||
| @@ -101,9 +101,9 @@ | |||
| 101 | ;; The list in {...} are the matching buffers, most recent first | 101 | ;; The list in {...} are the matching buffers, most recent first |
| 102 | ;; (buffers visible in the current frame are put at the end of the | 102 | ;; (buffers visible in the current frame are put at the end of the |
| 103 | ;; list by default). At any time I can select the item at the head of | 103 | ;; list by default). At any time I can select the item at the head of |
| 104 | ;; the list by pressing RET. I can also bring the put the first | 104 | ;; the list by pressing RET. I can also put the first element at the |
| 105 | ;; element at the end of the list by pressing C-s or [right], or put | 105 | ;; end of the list by pressing C-s or [right], or bring the last |
| 106 | ;; the last element at the head of the list by pressing C-r or [left]. | 106 | ;; element to the head of the list by pressing C-r or [left]. |
| 107 | ;; | 107 | ;; |
| 108 | ;; The item in [...] indicates what can be added to my input by | 108 | ;; The item in [...] indicates what can be added to my input by |
| 109 | ;; pressing TAB. In this case, I will get "3" added to my input. | 109 | ;; pressing TAB. In this case, I will get "3" added to my input. |
| @@ -210,8 +210,7 @@ | |||
| 210 | ;; Example: | 210 | ;; Example: |
| 211 | ;; | 211 | ;; |
| 212 | ;; If you have again two Buffers "123456" and "123" then hitting "2" does | 212 | ;; If you have again two Buffers "123456" and "123" then hitting "2" does |
| 213 | ;; not match because "2" is not a PREFIX in any of the buffer-names. This | 213 | ;; not match because "2" is not a PREFIX in any of the buffer-names. |
| 214 | ;; is the only difference between the substring and prefix matching. | ||
| 215 | 214 | ||
| 216 | ;; Flexible matching | 215 | ;; Flexible matching |
| 217 | ;; ----------------- | 216 | ;; ----------------- |
| @@ -236,14 +235,10 @@ | |||
| 236 | ;; | 235 | ;; |
| 237 | ;; There is limited provision for regexp matching within ido, | 236 | ;; There is limited provision for regexp matching within ido, |
| 238 | ;; enabled through `ido-enable-regexp' (toggle with C-t). | 237 | ;; enabled through `ido-enable-regexp' (toggle with C-t). |
| 239 | ;; This allows you to type `c$' for example and see all file names | 238 | ;; This allows you to type `[ch]$' for example and see all file names |
| 240 | ;; ending in `c'. This facility is quite limited though in two | 239 | ;; ending in `c' or `h'. |
| 241 | ;; respects. First, you can't currently type in expressions like | 240 | ;; |
| 242 | ;; `[0-9]' directly -- you have to type them in when ido-enable-regexp | 241 | ;; Note: ido-style completion is inhibited when you enable regexp matching. |
| 243 | ;; is nil and then toggle on the regexp functionality. Likewise, | ||
| 244 | ;; don't enter an expression containing `\' in regexp mode. If you | ||
| 245 | ;; try, ido gets confused, so just hit C-g and try again. Secondly, | ||
| 246 | ;; no completion mechanism is currently offered with regexp searching. | ||
| 247 | 242 | ||
| 248 | 243 | ||
| 249 | ;; Customization | 244 | ;; Customization |