A simple CPU rendered GUI IDE experience.
Diffstat (limited to 'src/edi/input_handlers.rs')
-rw-r--r--src/edi/input_handlers.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/edi/input_handlers.rs b/src/edi/input_handlers.rs
index ac4ca4c..6457787 100644
--- a/src/edi/input_handlers.rs
+++ b/src/edi/input_handlers.rs
@@ -28,6 +28,7 @@ pub fn handle2<'a>(
Character("q") if alt() => text.home(),
Named(Home) => text.home(),
Named(End) => text.end(),
+ Named(Tab) if shift() => text.dedent().unwrap(),
Named(Tab) => text.tab(),
Named(Delete) => {
text.right();