aboutsummaryrefslogtreecommitdiffstats
path: root/fzf-url.sh
diff options
context:
space:
mode:
authorWenxuan Zhang <wenxuangm@gmail.com>2021-05-30 17:11:08 +0800
committerWenxuan Zhang <wenxuangm@gmail.com>2021-05-30 17:11:08 +0800
commitf338301bd6de59efae91746e5bbac4b0c09a1639 (patch)
tree41d1e379eecd282f6d83510f5650cf5b1d32e62e /fzf-url.sh
parent6f0a08ad6e5eeed55cefea60ae1015e1bd796720 (diff)
downloadfork-tmux-fzf-url-f338301bd6de59efae91746e5bbac4b0c09a1639.tar.gz
fork-tmux-fzf-url-f338301bd6de59efae91746e5bbac4b0c09a1639.tar.bz2
fork-tmux-fzf-url-f338301bd6de59efae91746e5bbac4b0c09a1639.zip
refactor: option name and default behavior (#14)
Diffstat (limited to 'fzf-url.sh')
-rwxr-xr-xfzf-url.sh10
1 files changed, 9 insertions, 1 deletions
diff --git a/fzf-url.sh b/fzf-url.sh
index 4bd4fd8..1631d09 100755
--- a/fzf-url.sh
+++ b/fzf-url.sh
@@ -19,7 +19,15 @@ open_url() {
fi
}
-content="$(tmux capture-pane -J -p -S -"$2")"
+
+limit='screen'
+[[ $# -ge 2 ]] && limit=$2
+
+if [[ $limit == 'screen' ]]; then
+ content="$(tmux capture-pane -J -p)"
+else
+ content="$(tmux capture-pane -J -p -S -"$limit")"
+fi
mapfile -t urls < <(echo "$content" |grep -oE '(https?|ftp|file):/?//[-A-Za-z0-9+&@#/%?=~_|!:,.;]*[-A-Za-z0-9+&@#/%=~_|]')
mapfile -t wwws < <(echo "$content" |grep -oE 'www\.[a-zA-Z](-?[a-zA-Z0-9])+\.[a-zA-Z]{2,}(/\S+)*' |sed 's/^\(.*\)$/http:\/\/\1/')