aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Traver <25112463+austintraver@users.noreply.github.com>2020-05-22 18:35:40 -0700
committerGitHub <noreply@github.com>2020-05-22 21:35:40 -0400
commitef8f965c64c157de728124a84281630cfb234002 (patch)
treeddb9f83b2d866a9675dcc085e4e939265a091b5a
parent04a0486c66e2ae6d67cad990f95283863dbe28fd (diff)
downloadrneovim-ef8f965c64c157de728124a84281630cfb234002.tar.gz
rneovim-ef8f965c64c157de728124a84281630cfb234002.tar.bz2
rneovim-ef8f965c64c157de728124a84281630cfb234002.zip
doc: Add optional d for `:lcd` and `:tcd` (#12359)
The `:lcd -` command, and `:tcd -` which returns to a previous directory, can be done with `:lc -` and `:tc -` respectively. Basically, the d is optional, so I updated the documentation to indicate this in the traditional format.
-rw-r--r--runtime/doc/editing.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/editing.txt b/runtime/doc/editing.txt
index 23a65f16e4..ac398ec494 100644
--- a/runtime/doc/editing.txt
+++ b/runtime/doc/editing.txt
@@ -1265,7 +1265,7 @@ exist, the next-higher scope in the hierarchy applies.
other tabs and windows is not changed.
*:tcd-*
-:tcd[!] - Change to the previous current directory (before the
+:tc[d][!] - Change to the previous current directory (before the
previous ":tcd {path}" command).
*:tch* *:tchdir*
@@ -1280,7 +1280,7 @@ exist, the next-higher scope in the hierarchy applies.
:lch[dir][!] Same as |:lcd|.
*:lcd-*
-:lcd[!] - Change to the previous current directory (before the
+:lc[d][!] - Change to the previous current directory (before the
previous ":lcd {path}" command).
*:pw* *:pwd* *E187*