diff options
author | zeertzjq <zeertzjq@outlook.com> | 2021-10-17 22:04:53 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2021-10-17 22:04:53 +0800 |
commit | 34cfe745681189bbd8ec2543971a49e013bfebf9 (patch) | |
tree | 1b2011011610bbb67fee8f5692c0ce7223de9760 /runtime | |
parent | b1dd90c760cd87f6c5c0c7c66bd0cc61c69319c3 (diff) | |
download | rneovim-34cfe745681189bbd8ec2543971a49e013bfebf9.tar.gz rneovim-34cfe745681189bbd8ec2543971a49e013bfebf9.tar.bz2 rneovim-34cfe745681189bbd8ec2543971a49e013bfebf9.zip |
vim-patch:8.2.0876: :pwd does not give a hint about the scope of the directory
Problem: :pwd does not give a hint about the scope of the directory
Solution: Make ":verbose pwd" show the scope. (Takuya Fujiwara, closes vim/vim#5469)
https://github.com/vim/vim/commit/950587242cad52d067a15f0f0c83528a28f75731
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/editing.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/runtime/doc/editing.txt b/runtime/doc/editing.txt index 1eba702a06..efba9020f9 100644 --- a/runtime/doc/editing.txt +++ b/runtime/doc/editing.txt @@ -1304,6 +1304,21 @@ exist, the next-higher scope in the hierarchy applies. *:pw* *:pwd* *E187* :pw[d] Print the current directory name. Also see |getcwd()|. + *:pwd-verbose* + When 'verbose' is non-zero, |:pwd| will also display + what scope the current directory was set. Example: > + + " Set by :cd + :verbose pwd + [global] /path/to/current + + " Set by :lcd + :verbose pwd + [window] /path/to/current + + " Set by :tcd + :verbose pwd + [tabpage] /path/to/current So long as no |:lcd| or |:tcd| command has been used, all windows share the same current directory. Using a command to jump to another window doesn't |