mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 05:43:11 +00:00
124734cbaa
Documentation.
28 lines
981 B
ReStructuredText
28 lines
981 B
ReStructuredText
.. _cmd-cdh:
|
|
|
|
cdh - change to a recently visited directory
|
|
============================================
|
|
|
|
Synopsis
|
|
--------
|
|
|
|
``cdh`` [ *DIR* ]
|
|
|
|
Description
|
|
-----------
|
|
|
|
``cdh`` with no arguments presents a list of :ref:`recently visited directories <directory-history>`.
|
|
You can then select one of the entries by letter or number.
|
|
You can also press :kbd:`Tab` to use the completion pager to select an item from the list.
|
|
If you give it a single argument it is equivalent to ``cd DIR``.
|
|
|
|
Note that the ``cd`` command limits directory history to the 25 most recently visited directories.
|
|
The history is stored in the ``$dirprev`` and ``$dirnext`` variables which this command manipulates.
|
|
If you make those universal variables your ``cd`` history is shared among all fish instances.
|
|
|
|
See Also
|
|
--------
|
|
|
|
- the :ref:`dirh <cmd-dirh>` command to print the directory history
|
|
- the :ref:`prevd <cmd-prevd>` command to move backward
|
|
- the :ref:`nextd <cmd-nextd>` command to move forward
|