Open superxcgm opened 3 years ago
Behave like cd
Given: User current in some directory, for example: foo
, and have sub directories a
, 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
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 typej a
and hit<Enter>
Then: shell should change working directory to directorya
Quick access Given: User usually go to some directory, for example:
foo
, and currently in home directory~
When: User typej foo
and hit<Enter>
Then: shell should change working directory to directoryfoo
Quick access with fuzzy match Given: User usually go to some directory, for example:
foo
, and currently in home directory~
When: User typej fo
and hit<Enter>
Then: shell should change working directory to directoryfoo