Skip to content
Snippets Groups Projects
Commit 693b6651 authored by Christian Wellenbrock's avatar Christian Wellenbrock
Browse files

Add --query parameter to fzf invocation in vimf function

parent 5c71ecb2
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