summaryrefslogtreecommitdiff
path: root/Biz
diff options
context:
space:
mode:
Diffstat (limited to 'Biz')
-rwxr-xr-xBiz/Ide/ftags.sh2
-rwxr-xr-xBiz/Ide/hoog.sh9
-rwxr-xr-xBiz/Ide/ns4
3 files changed, 9 insertions, 6 deletions
diff --git a/Biz/Ide/ftags.sh b/Biz/Ide/ftags.sh
index 77646da..fba7fb0 100755
--- a/Biz/Ide/ftags.sh
+++ b/Biz/Ide/ftags.sh
@@ -7,7 +7,7 @@
tag_search=$(
awk 'BEGIN { FS="\t" } !/^!/ {print toupper($4)"\t"$1"\t"$2"\t"$3}' "$tags" \
| cut -c1-80 \
- | fzf \
+ | fzf-tmux \
--nth=1,2 \
--preview-window=down \
--preview "rg --ignore-case --pretty --context 2 --word-regexp {+2}"
diff --git a/Biz/Ide/hoog.sh b/Biz/Ide/hoog.sh
index 3945f90..976f0d4 100755
--- a/Biz/Ide/hoog.sh
+++ b/Biz/Ide/hoog.sh
@@ -5,10 +5,13 @@
set -euo pipefail
HOOG="hoogle search --count=200"
export FZF_DEFAULT_COMMAND="$HOOG $*"
- fzf \
+ result=$(fzf-tmux \
--preview-window=down \
--preview "hoogle search --link --info {+2}" \
--bind "change:reload:$HOOG {q} || true" \
- --print-query \
- --ansi
+ --ansi \
+ | cut -d' ' -f 1,2 \
+ | sed -e 's/ /./g'
+ )
+ hoogle search --info "$result"
##
diff --git a/Biz/Ide/ns b/Biz/Ide/ns
index aa4beac..c1db77b 100755
--- a/Biz/Ide/ns
+++ b/Biz/Ide/ns
@@ -2,12 +2,12 @@
##
if [[ $NOUN == "" ]]
then
- export NOUN=$(fd --exclude=_ -t f . $BIZ_ROOT | fzf)
+ export NOUN=$(fd --exclude=_ -t f . $BIZ_ROOT | fzf-tmux)
fi
##
if [[ $VERB == "" ]]
then
- export VERB=$(fzf <<< $(sed 's/ /\n/g' <<< "edit bild push ship lint"))
+ export VERB=$(fzf-tmux <<< $(sed 's/ /\n/g' <<< "edit bild push ship lint"))
fi
##
$VERB $NOUN