A small qutebrowser userscript for copying code snippets on web pages to the clipboard.
- Download the script:
wget https://raw.githubusercontent.com/LaurenceWarne/qute-code-hint/master/code_select.py -O ~/.local/share/qutebrowser/userscripts/code_select.py- In your qutebrowser config file create a new custom group for code:
c.hints.selectors["code"] = [
# Selects all code tags whose direct parent is not a pre tag
":not(pre) > code",
"pre"
]- Bind the userscript using a keybinding of your choice:
...
'<ctrl-#>': 'hint code userscript code_select.py',
...- Optionally install the python pyperclip module for better multiline copying:
pip3 install pyperclip --user
# Alternatively for PEP 668 compliance, you can install from your package manager, e.g.
sudo apt install python3-pyperclipIf you're having issues with pyperclip, you can use pyclip instead:
pip3 install pyclipWithout pyperclip/pyclip the default behaviour for code snippets spanning multiple lines is to join them all on one line, with semicolons separating the previously seperate lines.

