mirror of
https://github.com/Hopiu/micro.git
synced 2026-03-28 11:50:25 +00:00
Bind OutdentSelection to ShiftTab (Backtab)
I was under the impression that tcell couldn't detect shift tab key presses, but this was incorrect. It turns out that tcell just calls it backtab. This commit makes backtab the default binding for OutdentSelection. See #203
This commit is contained in:
parent
586a66b3a4
commit
c409f1cc07
1 changed files with 1 additions and 0 deletions
|
|
@ -370,6 +370,7 @@ func DefaultBindings() map[string]string {
|
|||
"Alt-Backspace": "DeleteWordLeft",
|
||||
"Alt-Backspace2": "DeleteWordLeft",
|
||||
"Tab": "IndentSelection,InsertTab",
|
||||
"Backtab": "OutdentSelection",
|
||||
"CtrlO": "OpenFile",
|
||||
"CtrlS": "Save",
|
||||
"CtrlF": "Find",
|
||||
|
|
|
|||
Loading…
Reference in a new issue