summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/find-urls8
-rw-r--r--tmux.conf2
2 files changed, 1 insertions, 9 deletions
diff --git a/bin/find-urls b/bin/find-urls
deleted file mode 100755
index e41363a..0000000
--- a/bin/find-urls
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use 5.014;
-
-use URL::Search 'extract_urls';
-
-say for extract_urls(do { local $/; <> });
diff --git a/tmux.conf b/tmux.conf
index 727b94c..d889bcb 100644
--- a/tmux.conf
+++ b/tmux.conf
@@ -36,7 +36,7 @@ bind ^N new-window
bind ^D detach-client
bind ^[ copy-mode
bind { copy-mode
-bind Enter run 'tmux capture-pane -p | find-urls | tail -n1 | xargs xdg-open'
+bind Enter run 'tmux capture-pane -p | perl -MURL::Search -E"say for URL::Search::extract_urls(do { local \$/; <> })" | tail -n1 | xargs xdg-open'
unbind ^B