diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2020-05-06 18:41:01 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2020-05-06 18:41:01 +0530 |
commit | 4832fc5fe1297f1241310f2453b850c72743e1bd (patch) | |
tree | 47c27a2f7309e9b1a5874df55635e383e667ac71 /plugins/pskill | |
parent | c8ecf06c515054595ac1dfa34989a3a7d26373ce (diff) | |
download | nnn-4832fc5fe1297f1241310f2453b850c72743e1bd.tar.gz |
Drop fzy support
Diffstat (limited to 'plugins/pskill')
-rwxr-xr-x | plugins/pskill | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/pskill b/plugins/pskill index c23034f..063be35 100755 --- a/plugins/pskill +++ b/plugins/pskill @@ -2,7 +2,7 @@ # Description: Fuzzy list and kill a (zombie) process by name # -# Dependencies: fzf or fzy, ps +# Dependencies: fzf, ps # # Note: To kill a zombie process enter "zombie" # @@ -24,8 +24,6 @@ if ! [ -z "$psname" ]; then if which fzf >/dev/null 2>&1; then fuzzy=fzf - elif which fzy >/dev/null 2>&1; then - fuzzy=fzy else exit 1 fi |