qutebrowser update
This commit is contained in:
parent
6d7a22be91
commit
fb5fe16867
3 changed files with 283 additions and 135 deletions
|
|
@ -27,8 +27,7 @@
|
|||
#
|
||||
# For simple keys (no `<>`-signs), a capital letter means the key is pressed
|
||||
# with Shift. For special keys (with `<>`-signs), you need to explicitly add
|
||||
# `Shift-` to match a key pressed with shift. You can bind multiple commands
|
||||
# by separating them with `;;`.
|
||||
# `Shift-` to match a key pressed with shift.
|
||||
#
|
||||
# Note that default keybindings are always bound, and need to be explicitly
|
||||
# unbound if you wish to remove them:
|
||||
|
|
@ -40,7 +39,7 @@
|
|||
|
||||
[!normal]
|
||||
|
||||
clear-keychain ;; leave-mode
|
||||
leave-mode
|
||||
<escape>
|
||||
<ctrl-[>
|
||||
|
||||
|
|
@ -224,34 +223,34 @@ yank
|
|||
yank -s
|
||||
yY
|
||||
|
||||
yank -t
|
||||
yank title
|
||||
yt
|
||||
|
||||
yank -ts
|
||||
yank title -s
|
||||
yT
|
||||
|
||||
yank -d
|
||||
yank domain
|
||||
yd
|
||||
|
||||
yank -ds
|
||||
yank domain -s
|
||||
yD
|
||||
|
||||
paste
|
||||
open -- {clipboard}
|
||||
pp
|
||||
|
||||
paste -s
|
||||
open -- {primary}
|
||||
pP
|
||||
|
||||
paste -t
|
||||
open -t -- {clipboard}
|
||||
Pp
|
||||
|
||||
paste -ts
|
||||
open -t -- {primary}
|
||||
PP
|
||||
|
||||
paste -w
|
||||
open -w -- {clipboard}
|
||||
wp
|
||||
|
||||
paste -ws
|
||||
open -w -- {primary}
|
||||
wP
|
||||
|
||||
quickmark-save
|
||||
|
|
@ -287,7 +286,7 @@ set-cmd-text -s :set
|
|||
set-cmd-text -s :set -t
|
||||
sl
|
||||
|
||||
set-cmd-text -s :set keybind
|
||||
set-cmd-text -s :bind
|
||||
sk
|
||||
|
||||
zoom-out
|
||||
|
|
@ -419,10 +418,10 @@ enter-mode set_mark
|
|||
enter-mode jump_mark
|
||||
'
|
||||
|
||||
yank -p
|
||||
yank pretty-url
|
||||
yp
|
||||
|
||||
yank -ps
|
||||
yank pretty-url -s
|
||||
yP
|
||||
|
||||
hint inputs
|
||||
|
|
@ -431,6 +430,24 @@ hint inputs
|
|||
repeat-command
|
||||
.
|
||||
|
||||
set-cmd-text /
|
||||
/
|
||||
|
||||
set-cmd-text ?
|
||||
?
|
||||
|
||||
set-cmd-text :
|
||||
:
|
||||
|
||||
tab-next
|
||||
<ctrl-pgdown>
|
||||
|
||||
record-macro
|
||||
q
|
||||
|
||||
run-macro
|
||||
@
|
||||
|
||||
[insert]
|
||||
# Keybindings for insert mode.
|
||||
# Since normal keypresses are passed through, only special keys are
|
||||
|
|
@ -442,7 +459,7 @@ repeat-command
|
|||
open-editor
|
||||
<ctrl-e>
|
||||
|
||||
paste-primary
|
||||
insert-text {primary}
|
||||
<shift-ins>
|
||||
|
||||
[hint]
|
||||
|
|
@ -476,8 +493,7 @@ hint all tab-bg
|
|||
# Useful hidden commands to map in this section:
|
||||
# * `command-history-prev`: Switch to previous command in history.
|
||||
# * `command-history-next`: Switch to next command in history.
|
||||
# * `completion-item-prev`: Select previous item in completion.
|
||||
# * `completion-item-next`: Select next item in completion.
|
||||
# * `completion-item-focus`: Select another item in completion.
|
||||
# * `command-accept`: Execute the command currently in the commandline.
|
||||
|
||||
command-history-prev
|
||||
|
|
@ -486,11 +502,11 @@ command-history-prev
|
|||
command-history-next
|
||||
<ctrl-n>
|
||||
|
||||
completion-item-prev
|
||||
completion-item-focus prev
|
||||
<shift-tab>
|
||||
<up>
|
||||
|
||||
completion-item-next
|
||||
completion-item-focus next
|
||||
<tab>
|
||||
<down>
|
||||
|
||||
|
|
@ -505,6 +521,12 @@ command-accept
|
|||
<enter>
|
||||
<shift-enter>
|
||||
|
||||
completion-item-focus next-category
|
||||
<ctrl-tab>
|
||||
|
||||
completion-item-focus prev-category
|
||||
<ctrl-shift-tab>
|
||||
|
||||
[prompt]
|
||||
# Keybindings for prompts in the status line.
|
||||
# You can bind normal keys in this mode, but they will be only active
|
||||
|
|
@ -512,8 +534,8 @@ command-accept
|
|||
# bind special keys.
|
||||
# Useful hidden commands to map in this section:
|
||||
# * `prompt-accept`: Confirm the entered value.
|
||||
# * `prompt-yes`: Answer yes to a yes/no question.
|
||||
# * `prompt-no`: Answer no to a yes/no question.
|
||||
# * `prompt-accept yes`: Answer yes to a yes/no question.
|
||||
# * `prompt-accept no`: Answer no to a yes/no question.
|
||||
|
||||
prompt-accept
|
||||
<return>
|
||||
|
|
@ -523,15 +545,23 @@ prompt-accept
|
|||
<enter>
|
||||
<shift-enter>
|
||||
|
||||
prompt-yes
|
||||
prompt-accept yes
|
||||
y
|
||||
|
||||
prompt-no
|
||||
prompt-accept no
|
||||
n
|
||||
|
||||
prompt-open-download
|
||||
<ctrl-x>
|
||||
|
||||
prompt-item-focus prev
|
||||
<shift-tab>
|
||||
<up>
|
||||
|
||||
prompt-item-focus next
|
||||
<tab>
|
||||
<down>
|
||||
|
||||
[command,prompt]
|
||||
|
||||
rl-backward-char
|
||||
|
|
@ -631,10 +661,10 @@ move-to-start-of-document
|
|||
move-to-end-of-document
|
||||
G
|
||||
|
||||
yank-selected -p
|
||||
yank selection -s
|
||||
Y
|
||||
|
||||
yank-selected
|
||||
yank selection
|
||||
y
|
||||
<return>
|
||||
<ctrl-m>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue