aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/fzfz
diff options
context:
space:
mode:
authorGravatar Nick Waywood <nwaywood@au1.ibm.com>2020-04-02 16:24:24 +1100
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-04-02 10:58:54 +0530
commit415a6edd4a553d2ecf3b2b26b79ab844473127a3 (patch)
treef0b81dfe2db23ef0f67ca912248e63788943e665 /plugins/fzfz
parent553f183919e2326f485eb2cc16309c60b0c3b7a7 (diff)
downloadnnn-415a6edd4a553d2ecf3b2b26b79ab844473127a3.tar.gz
Added support for fzy (#505)
* Added fzfz plugin * Fixed shellcheck errors * Fixed copy/paste error * Added support for fzy, also renamed plugin since it's not specific to fzf anymore * Refactored code * Clean spillovers (jarun)
Diffstat (limited to 'plugins/fzfz')
-rwxr-xr-xplugins/fzfz23
1 files changed, 0 insertions, 23 deletions
diff --git a/plugins/fzfz b/plugins/fzfz
deleted file mode 100755
index cb5e08a..0000000
--- a/plugins/fzfz
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/env sh
-
-# Description: cd to any dir in the z database using an fzf pane
-#
-# Shell: POSIX compliant
-# Author: Nick Waywood
-
-. "$(dirname "$0")"/.nnn-plugin-helper
-
-if [ "$(cmd_exists fzf)" -eq "0" ]; then
- if [ -f "$HOME/.z" ]; then
- # I read the data from z's file instead of calling the z command so that the data doesn't need to be processed twice
- sel=$(awk -F "|" '{print $1}' "$HOME/.z" | fzf | awk '{$1=$1};1')
- # NOTE: Uncomment this line and comment out the line above if you want to see the weightings of the dir's in the fzf pane
- # sel=$(awk -F "|" '{printf "%s %s\n", $2, $1}' "$HOME/.z" | fzf | sed 's/^[0-9,.]* *//' | awk '{$1=$1};1')
- else
- exit 1
- fi
-else
- exit 1
-fi
-
-printf "%s" "0$sel" > "$NNN_PIPE"