diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-03-21 17:44:44 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-03-21 17:44:44 -0400 |
commit | 6d01332b5562738270dbad6c60d61c3652a8f988 (patch) | |
tree | 5a6143c710998ec040ce4e476a5e775049e955a0 /config | |
parent | 4130956b4c3cfb63c36b25fadfc19e8c95fb6536 (diff) | |
download | aerc-6d01332b5562738270dbad6c60d61c3652a8f988.tar.gz |
Rig up terminal keybinding group
Diffstat (limited to 'config')
-rw-r--r-- | config/bindings.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/bindings.go b/config/bindings.go index 0032d72..4cb4805 100644 --- a/config/bindings.go +++ b/config/bindings.go @@ -154,6 +154,7 @@ func ParseBinding(input, output string) (*Binding, error) { func init() { keyNames = make(map[string]KeyStroke) keyNames["space"] = KeyStroke{tcell.KeyRune, ' '} + keyNames["semicolon"] = KeyStroke{tcell.KeyRune, ';'} keyNames["enter"] = KeyStroke{tcell.KeyEnter, 0} keyNames["up"] = KeyStroke{tcell.KeyUp, 0} keyNames["down"] = KeyStroke{tcell.KeyDown, 0} |