diff options
| author | 2019-03-24 21:11:43 +0530 | |
|---|---|---|
| committer | 2019-03-24 21:11:43 +0530 | |
| commit | b6c66a78c01384ea1cc255c5c16db4a436136109 (patch) | |
| tree | 946603ede73213bc45a498387910cb517b27256c /user-scripts/edit | |
| parent | 1bd42c40c6778263ff35ece3592bfc2c140fcd7a (diff) | |
| download | nnn-b6c66a78c01384ea1cc255c5c16db4a436136109.tar.gz | |
Use POSIX compliant sh scripts if possible
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` |