Skip to content

LaurenceWarne/qute-code-hint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

Qute Code Hint

A small qutebrowser userscript for copying code snippets on web pages to the clipboard.

Example

Hinting: Hinting

Copying to clipboard: Copying

Installation

  1. Download the script:
wget https://raw.githubusercontent.com/LaurenceWarne/qute-code-hint/master/code_select.py -O ~/.local/share/qutebrowser/userscripts/code_select.py
  1. 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"
]
  1. Bind the userscript using a keybinding of your choice:
...
'<ctrl-#>': 'hint code userscript code_select.py',
...
  1. 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-pyperclip

If you're having issues with pyperclip, you can use pyclip instead:

pip3 install pyclip

Multiline Copying

Without 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.

About

A Qutebrowser user script for hinting and copying code

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages