(Try to) homogenize TAB/RET/ESC keybinds

Map them to \t/^M/^[, rather than [tab], [return] and [escape].
This commit is contained in:
Henrik Lissner 2019-03-07 23:17:43 -05:00
parent b9a036a96c
commit 1f23eecdc8
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
4 changed files with 37 additions and 41 deletions

View file

@ -38,10 +38,7 @@
(add-to-list 'company-frontends 'company-tng-frontend)
(define-key! company-active-map
"RET" nil
[return] nil
"TAB" #'company-select-next
[tab] #'company-select-next
"<backtab>" #'company-select-previous
[backtab] #'company-select-previous))