aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorJuri Linkov2009-11-25 17:11:29 +0000
committerJuri Linkov2009-11-25 17:11:29 +0000
commit7d371eac644665cdc4afcac57e7a09560e010a31 (patch)
tree668947c7530c04603a2a5372cc13156c4f96ad0e /etc
parent04ae543a28153fda0c084a5d56f59e2f7b12510d (diff)
downloademacs-7d371eac644665cdc4afcac57e7a09560e010a31.tar.gz
emacs-7d371eac644665cdc4afcac57e7a09560e010a31.zip
Provide additional default values (file name at point or at the
current Dired line) via M-n for file reading minibuffers. (Bug#5010) * minibuffer.el (read-file-name-defaults): New function. (read-file-name): Reset `minibuffer-default' to nil when it duplicates initial input `insdef'. Bind `minibuffer-default-add-function' to lambda that calls `read-file-name-defaults' in `minibuffer-selected-window'. (minibuffer-insert-file-name-at-point): New command. * files.el (file-name-at-point-functions): New defcustom. (find-file-default): Remove defvar. (find-file-read-args): Don't use `find-file-default'. Move `minibuffer-with-setup-hook' that sets `minibuffer-default' to `read-file-name'. (find-file-literally): Use `read-file-name' with `confirm-nonexistent-file-or-buffer'. * ffap.el (ffap-guess-file-name-at-point): New autoloaded function. * dired.el (dired-read-dir-and-switches): Move `minibuffer-with-setup-hook' that sets `minibuffer-default' to `read-file-name'. (dired-file-name-at-point): New function. (dired-mode): Add hook `dired-file-name-at-point' to `file-name-at-point-functions'.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 51c3ee62a60..58ff7c6705f 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -150,6 +150,10 @@ For instance, this can complete M-x lch to list-command-history.
150** Completions in the *Completions* buffer are sorted vertically 150** Completions in the *Completions* buffer are sorted vertically
151when the value of the new variable `completions-format' is `vertical'. 151when the value of the new variable `completions-format' is `vertical'.
152 152
153** M-n provides more default values in the minibuffer of commands that
154read a file and directory name: a file name at point (when ffap is loaded
155without ffap-bindings), a file name on the current line in the Dired buffer.
156
153** M-r is bound to the new `move-to-window-line-top-bottom' 157** M-r is bound to the new `move-to-window-line-top-bottom'
154to mirror the new behavior of C-l in Emacs-23.1. 158to mirror the new behavior of C-l in Emacs-23.1.
155 159