mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 01:36:39 +08:00
38b24c2325
This makes it so we link to the very top of the document instead of a special anchor we manually include. So clicking e.g. :doc:`string <cmds/string>` will link you to cmds/string.html instead of cmds/string.html#cmd-string. I would love to have a way to say "this document from the root of the document path", but that doesn't appear to work, I tried `/cmds/string`. So we'll just have to use cmds/string in normal documents and plain `string` from other commands.
47 lines
1.2 KiB
ReStructuredText
47 lines
1.2 KiB
ReStructuredText
.. _cmd-nextd:
|
|
|
|
nextd - move forward through directory history
|
|
==============================================
|
|
|
|
Synopsis
|
|
--------
|
|
|
|
.. synopsis::
|
|
|
|
nextd [-l | --list] [POS]
|
|
|
|
Description
|
|
-----------
|
|
|
|
``nextd`` moves forwards *POS* positions in the :ref:`history of visited directories <directory-history>`; if the end of the history has been hit, a warning is printed.
|
|
|
|
If the **-l** or **--list** option is specified, the current directory history is also displayed.
|
|
|
|
The **-h** or **--help** option displays help about using this command.
|
|
|
|
Note that the ``cd`` command limits directory history to the 25 most recently visited directories. The history is stored in the :envvar:`dirprev` and :envvar:`dirnext` variables which this command manipulates.
|
|
|
|
Example
|
|
-------
|
|
|
|
::
|
|
|
|
cd /usr/src
|
|
# Working directory is now /usr/src
|
|
|
|
cd /usr/src/fish-shell
|
|
# Working directory is now /usr/src/fish-shell
|
|
|
|
prevd
|
|
# Working directory is now /usr/src
|
|
|
|
nextd
|
|
# Working directory is now /usr/src/fish-shell
|
|
|
|
See Also
|
|
--------
|
|
|
|
- the :doc:`cdh <cdh>` command to display a prompt to quickly navigate the history
|
|
- the :doc:`dirh <dirh>` command to print the directory history
|
|
- the :doc:`prevd <prevd>` command to move backward
|