Add --query parameter to fzf invocation in vimf function

pull/26/head
Christian Wellenbrock 10 years ago
parent 5c71ecb267
commit 693b6651b4

BIN
.DS_Store vendored

Binary file not shown.

@ -134,7 +134,7 @@ Useful examples
# vimf - Open selected file in Vim
vimf() {
local file
file=$(fzf) && vim "$file"
file=$(fzf --query=$1) && vim "$file"
}
# fd - cd to selected directory

Loading…
Cancel
Save