From 6e528248414e330c9e25e81596ab47b8b8a5b701 Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Fri, 14 May 2021 22:44:50 +0430 Subject: first commit --- .w3m/cgi-bin/goto_clipboard_primary.cgi | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 .w3m/cgi-bin/goto_clipboard_primary.cgi (limited to '.w3m/cgi-bin/goto_clipboard_primary.cgi') diff --git a/.w3m/cgi-bin/goto_clipboard_primary.cgi b/.w3m/cgi-bin/goto_clipboard_primary.cgi new file mode 100755 index 0000000..a9b208e --- /dev/null +++ b/.w3m/cgi-bin/goto_clipboard_primary.cgi @@ -0,0 +1,28 @@ +#!/usr/bin/env sh +### _ _ _ _ +### __ _ ___ | |_| |__ | | ___| |_ _ _ +### / _` |/ _ \| __| '_ \| |/ _ \ __| | | | +###| (_| | (_) | |_| |_) | | __/ |_| |_| | +### \__, |\___/ \__|_.__/|_|\___|\__|\__,_| +### |___/ +### https://www.youtube.com/user/gotbletu +### https://twitter.com/gotbletu +### https://github.com/gotbletu +### gotbletu@gmail.com +### +### Author : gotbletu +### Name : goto_clipboard_primary.cgi +### Version : 0.1 +### Date : 2020-04-26 +### Description : paste and go feature for w3m web browser using system clipboard (primary aka shift+insert) +### Depends On : w3m xsel +### Video Demo : https://youtu.be/p5NZb8f8AHA +### References : https://github.com/felipesaa/A-vim-like-firefox-like-configuration-for-w3m +### Install : put this script in /usr/lib/w3m/cgi-bin/ + +#GOTO url in clipboard in current page. If the clipboard has a +#"non url string/nothing" an blank page is shown. +printf "%s\r\n" "W3m-control: GOTO $(xsel -op)"; +#delete the buffer (element in history) created between the current page and +#the searched page by calling this script. +printf "W3m-control: DELETE_PREVBUF\r\n" -- cgit v1.2.3