Make r<tab>
and f<tab>
work (#4817)
Previously, commands such as `r<tab>` (replace with tab) or `t<tab>` (select till tab) had no effect. This is because `KeyCode::Tab` needs special treatment (like `KeyCode::Enter`).
This commit is contained in:
parent
7e99087fa3
commit
0e23e4f882
1 changed files with 7 additions and 0 deletions
|
@ -1131,6 +1131,10 @@ where
|
||||||
doc!(cx.editor).line_ending.as_str().chars().next().unwrap()
|
doc!(cx.editor).line_ending.as_str().chars().next().unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
KeyEvent {
|
||||||
|
code: KeyCode::Tab, ..
|
||||||
|
} => '\t',
|
||||||
|
|
||||||
KeyEvent {
|
KeyEvent {
|
||||||
code: KeyCode::Char(ch),
|
code: KeyCode::Char(ch),
|
||||||
..
|
..
|
||||||
|
@ -1277,6 +1281,9 @@ fn replace(cx: &mut Context) {
|
||||||
code: KeyCode::Enter,
|
code: KeyCode::Enter,
|
||||||
..
|
..
|
||||||
} => Some(doc.line_ending.as_str()),
|
} => Some(doc.line_ending.as_str()),
|
||||||
|
KeyEvent {
|
||||||
|
code: KeyCode::Tab, ..
|
||||||
|
} => Some("\t"),
|
||||||
_ => None,
|
_ => None,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue