qutebrowser: Fix visual selection errors, typehints
This commit is contained in:
parent
9750e943b9
commit
bd29839910
2 changed files with 18 additions and 8 deletions
|
|
@ -48,11 +48,9 @@ config.bind(leader + "tV", "set tabs.position left")
|
|||
|
||||
# [M]edia shortcuts - watch, queue, download media
|
||||
# bind mpv to play the current page/links, using a single instance which queues the next link passed
|
||||
config.bind(lleader + "M", "spawn umpv {url}")
|
||||
config.bind(lleader + "m", "hint links spawn umpv {hint-url}")
|
||||
config.bind(lleader + "I", "spawn uoeia -v imv {url}")
|
||||
config.bind(lleader + "i", "hint links spawn uoeia -v imv {hint-url}")
|
||||
config.bind(lleader + "<Ctrl-i>", "hint images spawn uoeia -v imv {hint-url}")
|
||||
config.bind(lleader + "I", "hint images spawn uoeia -v imv {hint-url}") # for images directly
|
||||
|
||||
# [G]emini shortcuts
|
||||
# the full power of qutebrowser at your fingertips for any gemini page!
|
||||
|
|
@ -73,9 +71,9 @@ config.bind(lleader + "dp", "save-to-pdf", mode="normal")
|
|||
config.bind("gD", "recent-downloads", mode="normal")
|
||||
|
||||
config.bind('"w', "add-wallabag", mode="normal") # add current page to wallabag
|
||||
config.bind(';w', "hint links userscript wallabag_add.sh") # add link to wallabag
|
||||
config.bind(";w", "hint links userscript wallabag_add.sh") # add link to wallabag
|
||||
config.bind('"s', "add-shaarli", mode="normal")
|
||||
config.bind(';s', "hint links userscript shaarli_add.sh")
|
||||
config.bind(";s", "hint links userscript shaarli_add.sh")
|
||||
|
||||
config.bind('"a', "send-to-archive", mode="normal")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue