diff options
| author | Kim F. Storm | 2005-07-15 09:19:53 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-07-15 09:19:53 +0000 |
| commit | bf67f27b0c97de166098fdab3659776d11bd96d9 (patch) | |
| tree | 883aa72aba0d55dd126bfda93e859bd757f4cf0a | |
| parent | 075e33b300d848ef5744acf9f0b6dccec56773bf (diff) | |
| download | emacs-bf67f27b0c97de166098fdab3659776d11bd96d9.tar.gz emacs-bf67f27b0c97de166098fdab3659776d11bd96d9.zip | |
(ido-define-mode-map): Move ido-next-work-file to C-M-o.
Use with-no-warnings around ffap-guesser.
| -rw-r--r-- | lisp/ido.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/ido.el b/lisp/ido.el index 97adb97bdd5..f3beb554568 100644 --- a/lisp/ido.el +++ b/lisp/ido.el | |||
| @@ -1405,7 +1405,7 @@ This function also adds a hook to the minibuffer." | |||
| 1405 | (define-key map "\C-s" 'ido-next-match) | 1405 | (define-key map "\C-s" 'ido-next-match) |
| 1406 | (define-key map "\C-t" 'ido-toggle-regexp) | 1406 | (define-key map "\C-t" 'ido-toggle-regexp) |
| 1407 | (define-key map "\C-z" 'ido-undo-merge-work-directory) | 1407 | (define-key map "\C-z" 'ido-undo-merge-work-directory) |
| 1408 | (define-key map [(control ? )] 'ido-restrict-to-matches) | 1408 | (define-key map [(control ?\s)] 'ido-restrict-to-matches) |
| 1409 | (define-key map [(control ?@)] 'ido-restrict-to-matches) | 1409 | (define-key map [(control ?@)] 'ido-restrict-to-matches) |
| 1410 | (define-key map [right] 'ido-next-match) | 1410 | (define-key map [right] 'ido-next-match) |
| 1411 | (define-key map [left] 'ido-prev-match) | 1411 | (define-key map [left] 'ido-prev-match) |
| @@ -1436,7 +1436,7 @@ This function also adds a hook to the minibuffer." | |||
| 1436 | (define-key map [(meta ?m)] 'ido-make-directory) | 1436 | (define-key map [(meta ?m)] 'ido-make-directory) |
| 1437 | (define-key map [(meta ?n)] 'ido-next-work-directory) | 1437 | (define-key map [(meta ?n)] 'ido-next-work-directory) |
| 1438 | (define-key map [(meta ?o)] 'ido-prev-work-file) | 1438 | (define-key map [(meta ?o)] 'ido-prev-work-file) |
| 1439 | (define-key map [(meta ?O)] 'ido-next-work-file) | 1439 | (define-key map [(meta control ?o)] 'ido-next-work-file) |
| 1440 | (define-key map [(meta ?p)] 'ido-prev-work-directory) | 1440 | (define-key map [(meta ?p)] 'ido-prev-work-directory) |
| 1441 | (define-key map [(meta ?s)] 'ido-merge-work-directories) | 1441 | (define-key map [(meta ?s)] 'ido-merge-work-directories) |
| 1442 | ) | 1442 | ) |
| @@ -2056,7 +2056,7 @@ If INITIAL is non-nil, it specifies the initial input string." | |||
| 2056 | 2056 | ||
| 2057 | ((and ido-use-filename-at-point | 2057 | ((and ido-use-filename-at-point |
| 2058 | (setq fn (if (eq ido-use-filename-at-point 'guess) | 2058 | (setq fn (if (eq ido-use-filename-at-point 'guess) |
| 2059 | (ffap-guesser) | 2059 | (with-no-warnings (ffap-guesser)) |
| 2060 | (ffap-string-at-point))) | 2060 | (ffap-string-at-point))) |
| 2061 | (not (string-match "^http:/" fn)) | 2061 | (not (string-match "^http:/" fn)) |
| 2062 | (setq d (file-name-directory fn)) | 2062 | (setq d (file-name-directory fn)) |