Description
|
Features
|
Requirements
|
Usage
Installation
|
Configuration
|
References
|
License
🚀 enhancd v2 is ...
A next-generation cd
command with an interactive filter ✨
cd
command is one of the frequently used commands.
Nevertheless, it is not so easy to handle unfortunately. A directory path given as an argument to cd
command must be a valid path that exists and is able to resolve. In other words, you cannot pass a partial path such as "dir" (you are in /home/lisa
, dir is /home/lisa/work/dir
) to cd
command.
The new cd command called "enhancd" enhanced the flexibility and usability for a user. enhancd will memorize all directories visited by a user and use it for the pathname resolution. If the log of enhancd have more than one directory path with the same name, enhancd will pass the candidate directories list to the filter within the ENHANCD_FILTER environment variable in order to narrow it down to one directory.
Thanks to this mechanism, the user can intuitively and easily change the directory you want to go.
DEMO:
- Go to the visited directory in the past
- Easy to filter, using your favorite filter
- Work on Bash, Zsh and Fish 🐟
- Go back to a specific parent directory like zsh-bd
- Fuzzy search in a similar name directory
- Support standard input (
echo $HOME | cd
is acceptable)
You can fuzzy-search a directory name you want to run cd
. For example, a word "text" is expand to "test" and "txt".
-
An interactive filter
Choose any one from among these.
-
AWK (
nawk
orgawk
)
Under Zsh or Bourne shells such as sh and bash, you just source init.sh
into your shell:
$ source ./init.sh
Because enhancd functions must be executed in the context of the current shell, you should run something like above command.
The basic usage of the cd
command that has been implemented by enhancd
is the same as the normal builtin cd
command.
$ cd [-|..] <directory>
If no arguments are given, enhancd cd
command will display a list of the directory you've visited once, encourage you to filter the directory that you want to move.
$ cd
...
/home/lisa/src/github.com/b4b4r07/enhancd/zsh
/home/lisa/src/github.com/b4b4r07/gotcha
/home/lisa/src/github.com/b4b4r07/blog/public
/home/lisa/src/github.com/b4b4r07/blog
/home/lisa/src/github.com/b4b4r07/link_test
/home/lisa/src/github.com/b4b4r07
/home/lisa/Dropbox/etc/dotfiles
/home/lisa/src/github.com/b4b4r07/enhancd
> /home/lisa
247/247
> _
The ENHANCD_FILTER variable is specified as a list of one or more visual filter command such as this separated by colon (:
) characters.
It is likely the only environment variable you'll need to set when starting enhancd.
$ ENHANCD_FILTER=peco; export ENHANCD_FILTER
Since the $ENHANCD_FILTER
variable can be a list, enhancd will use $ENHANCD_FILTER
to mean the first element unless otherwise specified.
$ ENHANCD_FILTER=fzf:peco:gof
$ export ENHANCD_FILTER
🆕 v2.2.0~
You can make the option that you thought for your enhancd from 2.2.0 or above.
$ cd --help
usage: cd [OPTIONS] [dir]
OPTIONS:
-h, --help Show help message
-V, --version Show version information
-c, --current Filter current directories that have been to
-g, --ghq Filter ghq list and cd to it
Those options are defined at /custom.json. As it is written in this json, the user have to make a directory list file or script that generate the list like this script. Of cource, you can disable those options if you do not like it.
-
Hyphen (
-
)When enhancd takes a hyphen (
-
) string as an argument, it searchs from the last 10 directory items in the log. With it, you can search easily the directory you used last.$ cd - /home/lisa/Dropbox/etc/dotfiles /home/lisa/Dropbox /home/lisa/src/github.com /home/lisa/src/github.com/b4b4r07/cli /home /home/lisa/src /home/lisa/src/github.com/b4b4r07/enhancd /home/lisa/src/github.com/b4b4r07/gotcha /home/lisa/src/github.com/b4b4r07 > /home/lisa/src/github.com/b4b4r07/portfolio 10/10 > _
Then, since the current directory will be delete from the candidate, you just press Enter key to return to the previous directory after type
cd -
($PWD
is/home/lisa
,$OLDPWD
is/home/lisa/src/github.com/b4b4r07/portfolio
). -
Double-dot (
..
)From the beginning,
..
means the directory's parent directory, that is, the directory that contains it. When enhancd takes a double-dot (..
) string as an argument, it behaves like a zsh-bd plugin. In short, you can jump back to a specific directory, without doingcd ../../..
.For example, when you are in
/home/lisa/src/github.com/b4b4r07/enhancd
, typecd ..
in your terminal:$ cd .. / home lisa src github.com > b4b4r07 6/6 > _
When moving to the parent directory, the current directory is removed from the candidate.
Give me a trial!
-
Install with zplug:
enhancd can be installed by adding following to your
.zshrc
file in the same function you're doing your otherzplug load
calls in.$ zplug "b4b4r07/enhancd", use:init.sh
-
Install with
git clone
:$ git clone https://github.com/b4b4r07/enhancd $ source /path/to/enhancd/init.sh
The ENHANCD_DIR variable is a base directory path. It defaults to ~/.enhancd
.
-
What is ENHANCD_FILTER?
The ENHANCD_FILTER is an environment variable. It looks exactly like the PATH variable containing with many different filters such as peco concatenated using '
:
'. -
How to set the ENHANCD_FILTER variable?
Setting the ENHANCD_FILTER variable is exactly like setting the PATH variable. For example:
$ export ENHANCD_FILTER="/usr/local/bin/peco:fzf:non-existing-filter"
This above command will hold good till the session is closed. In order to make this change permanent, we need to put this command in the appropriate profile file. The ENHANCD_FILTER command in this example is set with 3 components:
/usr/local/bin/peco
followed byfzf
and thenot-existing-filter
.enhancd narrows the ENHANCD_FILTER variable down to one. However, the command does not exist can not be the candidate.
Let us try to test this ENHANCD_FILTER variable.
$ cd
If cd command does not return error, the settings of ENHANCD_FILTER is success.
-
How to find the value of the ENHANCD_FILTER variable?
$ echo $ENHANCD_FILTER /usr/local/bin/peco:fzf:non-existing-filter
The ENHANCD_COMMAND environment variable is to change the command name of enhancd cd
. It defaults to cd
.
When the command name is changed, you should set new command name to ENHANCD_COMMAND, export it and restart your shell (reload init.sh
).
$ echo $ENHANCD_COMMAND
cd
$ export ENHANCD_COMMAND=ecd
$ source /path/to/init.sh
The ENHANCD_COMMAND may only hold one command name. Thus, in the previous example, it is true that enhancd cd
command name is ecd
, but it is not cd
(cd
is turned into original builtin cd
).
Besides putting a setting such as this one in your ~/.bash_profile
or .zshenv
would be a good idea:
ENHANCD_COMMAND=ecd; export ENHANCD_COMMAND
If you don't want to use the interactive filter, when specifing a double dot (..
), you should set not zero value to $ENHANCD_DISABLE_DOT
. Dedaluts to 0.
This option is similar to ENHANCD_DISABLE_DOT
. Defaults to 0.
The "visual filter" (interactive filter) is what is called "Interactive Grep Tool" according to percol that is a pioneer in interactive selection to the traditional pipe concept on UNIX.
- percol 👉 percol adds flavor of interactive selection to the traditional pipe concept on UNIX
- peco 👉 Simplistic interactive filtering tool
- hf 👉 hf is a command line utility to quickly find files and execute a command
- fzf 👉 fzf is a blazing fast command-line fuzzy finder written in Go
- gof 👉 gof - Go Fuzzy
- selecta 👉 Selecta is a fuzzy text selector for files and anything else you need to select
- pick 👉 Pick is "just like Selecta, but faster"
- icepick 👉 icepick is a reimplementation of Selecta in Rust
- sentaku 👉 Utility to make sentaku (selection, 選択(sentaku)) window with shell command
©️ MIT