blob: 61552501c6ec052257e84f5718b01e6cc5b92840 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env sh
# Description: Fuzzy find a file in directory subtree with fzy and edit in vim
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
vim "$(find -type f | fzy)"
|