1
0
Fork 0

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]
pull/666/head
vrtcl1dvoshun 12 years ago
parent 7e33c7189e
commit c4c9abc2b6

@ -3,7 +3,7 @@ Fasd
[Fasd][1] is a command-line productivity booster, inspired by tools like [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 [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. accessed.
For completion to work, this module must be loaded **after** the *completion* For completion to work, this module must be loaded **after** the *completion*
@ -16,6 +16,7 @@ Aliases
------- -------
- `j` changes the current working directory interactively. - `j` changes the current working directory interactively.
- `v` Mimics rupa/v: opens the file with vim using viminfo backend.
Completion Completion
---------- ----------

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

Loading…
Cancel
Save