diff options
| author | Leo Liu | 2011-02-16 00:51:39 -0800 |
|---|---|---|
| committer | Glenn Morris | 2011-02-16 00:51:39 -0800 |
| commit | c6cefd36106ddade8fc65fc074221132357428ff (patch) | |
| tree | d024ca12f03a77e8fe74efb3bd37a3d9e3ebdb1a | |
| parent | b322c9aff7e794fa82123c6df4775a3887e90176 (diff) | |
| download | emacs-c6cefd36106ddade8fc65fc074221132357428ff.tar.gz emacs-c6cefd36106ddade8fc65fc074221132357428ff.zip | |
More dired-x cleanup.
* lisp/dired-x.el (dired-mode-map, dired-extra-startup):
Remove dired-copy-filename-as-kill since it's already in dired.el.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/dired-x.el | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 10ca65a55a9..65453b44c22 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-02-16 Leo <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * dired-x.el (dired-mode-map, dired-extra-startup): | ||
| 4 | Remove dired-copy-filename-as-kill since it's already in dired.el. | ||
| 5 | |||
| 1 | 2011-02-16 Glenn Morris <rgm@gnu.org> | 6 | 2011-02-16 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * dired-x.el (dired-bind-jump, dired-bind-man, dired-bind-info): | 8 | * dired-x.el (dired-bind-jump, dired-bind-man, dired-bind-info): |
diff --git a/lisp/dired-x.el b/lisp/dired-x.el index fa064898ed4..0d16eef1c28 100644 --- a/lisp/dired-x.el +++ b/lisp/dired-x.el | |||
| @@ -245,7 +245,6 @@ to nil: a pipe using `zcat' or `gunzip -c' will be used." | |||
| 245 | (define-key dired-mode-map "*(" 'dired-mark-sexp) | 245 | (define-key dired-mode-map "*(" 'dired-mark-sexp) |
| 246 | (define-key dired-mode-map "*." 'dired-mark-extension) | 246 | (define-key dired-mode-map "*." 'dired-mark-extension) |
| 247 | (define-key dired-mode-map "\M-!" 'dired-smart-shell-command) | 247 | (define-key dired-mode-map "\M-!" 'dired-smart-shell-command) |
| 248 | (define-key dired-mode-map "w" 'dired-copy-filename-as-kill) | ||
| 249 | (define-key dired-mode-map "\M-G" 'dired-goto-subdir) | 248 | (define-key dired-mode-map "\M-G" 'dired-goto-subdir) |
| 250 | (define-key dired-mode-map "F" 'dired-do-find-marked-files) | 249 | (define-key dired-mode-map "F" 'dired-do-find-marked-files) |
| 251 | (define-key dired-mode-map "Y" 'dired-do-relsymlink) | 250 | (define-key dired-mode-map "Y" 'dired-do-relsymlink) |
| @@ -308,8 +307,6 @@ files"] | |||
| 308 | \\[dired-do-find-marked-files]\t-- visit all marked files simultaneously | 307 | \\[dired-do-find-marked-files]\t-- visit all marked files simultaneously |
| 309 | \\[dired-omit-mode]\t-- toggle omitting of files | 308 | \\[dired-omit-mode]\t-- toggle omitting of files |
| 310 | \\[dired-mark-sexp]\t-- mark by Lisp expression | 309 | \\[dired-mark-sexp]\t-- mark by Lisp expression |
| 311 | \\[dired-copy-filename-as-kill]\t-- copy the file or subdir names into the kill ring; | ||
| 312 | \t you can feed it to other commands using \\[yank] | ||
| 313 | 310 | ||
| 314 | To see the options you can set, use M-x customize-group RET dired-x RET. | 311 | To see the options you can set, use M-x customize-group RET dired-x RET. |
| 315 | See also the functions: | 312 | See also the functions: |