Skip to content
Snippets Groups Projects
Commit fa54c5d9 authored by Junegunn Choi's avatar Junegunn Choi
Browse files

Merge pull request #26 from wellle/vimf-query

Add --query parameter to fzf invocation in vimf function
parents 5c71ecb2 693b6651
No related branches found
No related tags found
No related merge requests found
.DS_Store 0 → 100644
File added
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment