Merge pull request #26 from wellle/vimf-query

Add --query parameter to fzf invocation in vimf function
pull/28/head
Junegunn Choi 10 years ago
commit fa54c5d9b0

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