m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-18 08:13:40 -05:00

Refactoring

This commit is contained in:
Junegunn Choi
2013-10-25 00:40:04 +09:00
parent abd07ffb9e
commit 7f2ffb9746
2 changed files with 69 additions and 86 deletions

View File

@@ -107,7 +107,9 @@ Useful bash examples
```sh
# vimf - Open selected file in Vim
alias vimf='vim `fzf`'
vimf() {
FILE=`fzf` && vim "$FILE"
}
# fd - cd to selected directory
fd() {