Remove vf funcion as fasd unsupported

Signed-off-by: John McBride <jpmmcbride@gmail.com>
pull/1483/head
John McBride 2020-02-05 15:15:13 -07:00
parent 3f293c253f
commit b442267d2d
1 changed files with 0 additions and 10 deletions

View File

@ -37,13 +37,3 @@ fcd() {
-o -type d -print 2> /dev/null | fzf +m) && -o -type d -print 2> /dev/null | fzf +m) &&
cd "$dir" cd "$dir"
} }
vf() {
about "Use fasd to search the file to open in vim"
group "fzf"
param "1: Search term for fasd"
example "vf xml"
local file
file="$(fasd -Rfl "$1" | fzf -1 -0 --no-sort +m)" && vi "${file}" || return 1
}