Added v and fixed j

- `v` Mimics rupa/v: opens the file with vim using viminfo backend.
- fixed `j` alias to only look for directories

[ticket: X]
This commit is contained in:
vrtcl1dvoshun 2013-05-22 16:53:12 -05:00
parent 7e33c7189e
commit c4c9abc2b6
2 changed files with 4 additions and 3 deletions

View file

@ -3,7 +3,7 @@ Fasd
[Fasd][1] is a command-line productivity booster, inspired by tools like
[autojump][2], [z][3] and [v][4], it offers quick access to files and
directories by keeping track of files and directories that were previously
directories by keeping track of files and directories that were previously
accessed.
For completion to work, this module must be loaded **after** the *completion*
@ -16,6 +16,7 @@ Aliases
-------
- `j` changes the current working directory interactively.
- `v` Mimics rupa/v: opens the file with vim using viminfo backend.
Completion
----------

View file

@ -49,6 +49,6 @@ function fasd_cd {
# Aliases
#
# Changes the current working directory interactively.
alias j='fasd_cd -i'
alias j='fasd_cd -id' # Changes the current working directory interactively.
alias v='fasd -f -t -e vim -b viminfo' # Mimics rupa/v: opens the file with vim using viminfo backend.