My build of nnn with minor changes
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- #!/usr/bin/env sh
-
- # Description: Fuzzy find a file in directory subtree with fzy and edit in vim
- #
- # Shell: generic
- # Author: Arun Prakash Jana
-
- # bash, zsh
- vim $(find -type f | fzy)
-
- # fish
- # vim (find -type f | fzy)
|