Fix default bindings for quit and edit
This commit is contained in:
parent
67ddaea1b2
commit
52b318127f
|
@ -1,12 +1,13 @@
|
||||||
# Binds are of the form <key sequence> = <command to run>
|
# Binds are of the form <key sequence> = <command to run>
|
||||||
# To use '=' in a key sequence, substitute it with "Eq": "<Ctrl+Eq>"
|
# To use '=' in a key sequence, substitute it with "Eq": "<Ctrl+Eq>"
|
||||||
# If you wish to bind #, you can wrap the key sequence in quotes: "#" = quit
|
# If you wish to bind #, you can wrap the key sequence in quotes: "#" = quit
|
||||||
q = :quit<Enter>
|
|
||||||
<C-p> = :prev-tab<Enter>
|
<C-p> = :prev-tab<Enter>
|
||||||
<C-n> = :next-tab<Enter>
|
<C-n> = :next-tab<Enter>
|
||||||
<C-t> = :term<Enter>
|
<C-t> = :term<Enter>
|
||||||
|
|
||||||
[messages]
|
[messages]
|
||||||
|
q = :quit<Enter>
|
||||||
|
|
||||||
j = :next-message<Enter>
|
j = :next-message<Enter>
|
||||||
<Down> = :next-message<Enter>
|
<Down> = :next-message<Enter>
|
||||||
<C-d> = :next-message 50%<Enter>
|
<C-d> = :next-message 50%<Enter>
|
||||||
|
@ -67,6 +68,8 @@ $ex = <semicolon>
|
||||||
# Keybindings used when reviewing a message to be sent
|
# Keybindings used when reviewing a message to be sent
|
||||||
y = :send<Enter>
|
y = :send<Enter>
|
||||||
n = :abort<Enter>
|
n = :abort<Enter>
|
||||||
|
e = :edit<Enter>
|
||||||
|
a = :attach<Enter>
|
||||||
|
|
||||||
[terminal]
|
[terminal]
|
||||||
$noinherit = true
|
$noinherit = true
|
||||||
|
|
Loading…
Reference in New Issue