Don't capture ctrl+tab in text box, fixes #123
This commit is contained in:
parent
686185b0f1
commit
bde7e2bfc2
1 changed files with 7 additions and 5 deletions
|
|
@ -984,12 +984,14 @@ where
|
|||
status = Status::Captured;
|
||||
}
|
||||
Named::Tab => {
|
||||
if modifiers.shift() {
|
||||
editor.action(Action::Unindent);
|
||||
} else {
|
||||
editor.action(Action::Indent);
|
||||
if !modifiers.control() {
|
||||
if modifiers.shift() {
|
||||
editor.action(Action::Unindent);
|
||||
} else {
|
||||
editor.action(Action::Indent);
|
||||
}
|
||||
status = Status::Captured;
|
||||
}
|
||||
status = Status::Captured;
|
||||
}
|
||||
_ => (),
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue