aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/fzy-open
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-08-22 19:58:39 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-08-23 08:30:48 +0530
commit9feb5ce6512c9a5b1e6658d0ea408f5c19332b2c (patch)
tree5ad703522600829982eca71ee93e9f85b0292f86 /plugins/fzy-open
parent0fbd68ab48b38319f3f3d516ef4d04d7274db4ac (diff)
downloadnnn-9feb5ce6512c9a5b1e6658d0ea408f5c19332b2c.tar.gz
Merge fzy-edit into fzy-open
Diffstat (limited to 'plugins/fzy-open')
-rwxr-xr-xplugins/fzy-open13
1 files changed, 11 insertions, 2 deletions
diff --git a/plugins/fzy-open b/plugins/fzy-open
index 0ddd229..a2fbb89 100755
--- a/plugins/fzy-open
+++ b/plugins/fzy-open
@@ -1,8 +1,17 @@
#!/usr/bin/env sh
-# Description: Fuzzy find a file in directory subtree with fzy and open using xdg-open
+# Description: Fuzzy find a file in directory subtree with fzy
+# Opens in $VISUAL or $EDITOR if text
+# Opens other type of files with xdg-open
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
-xdg-open "$(find -type f | fzy)" >/dev/null 2>&1
+entry="$(find -type f | fzy)"
+
+case "$(file -biL "$entry")" in
+ *text*)
+ "${VISUAL:-$EDITOR}" "$entry" ;;
+ *)
+ xdg-open "$entry" >/dev/null 2>&1 ;;
+esac