Add alias z provided by fasd

This commit is contained in:
Tevin Zhang 2018-12-01 01:12:55 +08:00
parent e6eea17b12
commit e020107a16
2 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,7 @@ Aliases
-------
- `j` changes the current working directory interactively.
- `z` changes the current working directory, same functionality as `j` in [autojump][2].
Completion
----------

View File

@ -54,3 +54,6 @@ function fasd_cd {
# Changes the current working directory interactively.
alias j='fasd_cd -i'
# Changes the current working directory, same functionality as j in autojump.
alias z='fasd_cd'