#!/usr/bin/env bash # vim: set filetype=sh # # Author: Cody Hiar # Date: 2019-04-25 # # Description: Search buffer for url results PANE_HISTORY="$(tmux capture-pane -J -p)" URL=$(echo "$PANE_HISTORY" | perl -wnl -e '/https?\:\/\/[^\s]+[\/\w]/ and print $&' | fzf-tmux) if [[ -n "$URL" ]]; then echo "$URL" | xp fi