Problem: to have a keyboard shortcut to google a current selection in Screen's copy mode from terminal to Firefox
You can copy the sentence to Screen's clipboard in copy-mode by pressing enter
. However, I want to be able to press g
to put the Screen's clipboard to the command below as the first parameter:
#!/bin/sh
q=$1
open "http://www.google.com/search?q=$q"
I do the same at the moment by
- C-a Esc [select the area] enter
- C-z [to put the current window out of the way]
- google C-a ]
How can you put Screen's clipboard to the command?