* lisp/files.el (pwd):
When called with a prefix argument, insert the current default directory at point.
This commit is contained in:
parent
f2f5a39c6d
commit
a58c6cb528
2 changed files with 11 additions and 4 deletions
3
etc/NEWS
3
etc/NEWS
|
@ -817,6 +817,9 @@ name. The variable `system-name' is now obsolete.
|
|||
+++
|
||||
** Function `write-region' no longer outputs "Wrote FILE" in batch mode.
|
||||
|
||||
** If `pwd' is called with a prefix argument, insert the current default
|
||||
directory at point.
|
||||
|
||||
---
|
||||
** New utilities in subr-x.el:
|
||||
*** New macros `if-let' and `when-let' allow defining bindings and to
|
||||
|
|
|
@ -654,10 +654,14 @@ the value of `default-directory'."
|
|||
'file-directory-p))
|
||||
|
||||
|
||||
(defun pwd ()
|
||||
"Show the current default directory."
|
||||
(interactive nil)
|
||||
(message "Directory %s" default-directory))
|
||||
(defun pwd (&optional insert)
|
||||
"Show the current default directory.
|
||||
With prefix argument INSERT, insert the current default directory
|
||||
at point instead."
|
||||
(interactive "P")
|
||||
(if insert
|
||||
(insert default-directory)
|
||||
(message "Directory %s" default-directory)))
|
||||
|
||||
(defvar cd-path nil
|
||||
"Value of the CDPATH environment variable, as a list.
|
||||
|
|
Loading…
Add table
Reference in a new issue