From fbacbbccd8599c6c747e8fffb0a1f2d342a7d4a8 Mon Sep 17 00:00:00 2001 From: Gotbletu Date: Sun, 14 Apr 2013 14:50:03 -0700 Subject: [PATCH] more url paser --- urlscan_tmux.txt | 5 +++++ w3m_context_view_tmux.txt | 8 ++++++++ 2 files changed, 13 insertions(+) create mode 100644 urlscan_tmux.txt create mode 100644 w3m_context_view_tmux.txt diff --git a/urlscan_tmux.txt b/urlscan_tmux.txt new file mode 100644 index 0000000..e9311e0 --- /dev/null +++ b/urlscan_tmux.txt @@ -0,0 +1,5 @@ +# for ~/.tmux.conf +# urlscan as context and url view +bind-key U capture-pane \; save-buffer /tmp/tmux-buffer \; \ + new-window -n "urlscan" '$SHELL -c "urlscan -c < /tmp/tmux-buffer"' + diff --git a/w3m_context_view_tmux.txt b/w3m_context_view_tmux.txt new file mode 100644 index 0000000..5a27471 --- /dev/null +++ b/w3m_context_view_tmux.txt @@ -0,0 +1,8 @@ +# for ~/.tmux.conf +# w3m as a url context viewer and launcher +# http://www.mail-archive.com/mutt-users@mutt.org/msg09657.html +# hit : to activate links +# hit Esc then Shift+M to open GUI browser +bind-key y capture-pane \; save-buffer /tmp/tmux-buffer \; \ + new-window -n "w3m" '$SHELL -c "w3m < /tmp/tmux-buffer"' +