autojump
, memorize user cd history and jump with blur search.
#55
Labels
autojump
, memorize user cd history and jump with blur search.
#55
Epic
Process
Description
Shell should able to remember some directories that user frequently access, and navigate user to that directory by using
j
command. If user quit shell and run shell again, shell should not lost it's memory. You can checkout more information on https://github.com/wting/autojump.AC
Behave like
cd
Given: User current in some directory, for example:
foo
, and have sub directoriesa
,b
When: User type
j a
and hit<Enter>
Then: shell should change working directory to directory
a
Quick access
Given: User usually go to some directory, for example:
foo
, and currently in home directory~
When: User type
j foo
and hit<Enter>
Then: shell should change working directory to directory
foo
Quick access with fuzzy match
Given: User usually go to some directory, for example:
foo
, and currently in home directory~
When: User type
j fo
and hit<Enter>
Then: shell should change working directory to directory
foo
The text was updated successfully, but these errors were encountered: