diff options
Diffstat (limited to 'user-scripts/edit')
| -rwxr-xr-x | user-scripts/edit | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/user-scripts/edit b/user-scripts/edit index f23d7a8..d15b34e 100755 --- a/user-scripts/edit +++ b/user-scripts/edit @@ -2,11 +2,7 @@ # Description: Fuzzy find a file in directory subtree with fzy and edit in vim # -# Shell: generic +# Shell: POSIX compliant # Author: Arun Prakash Jana -# bash, zsh -vim $(find -type f | fzy) - -# fish -# vim (find -type f | fzy) +vim `find -type f | fzy` |