We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7eb5e7 commit d45ea97Copy full SHA for d45ea97
1 file changed
kernel/src/interrupts.rs
@@ -182,11 +182,13 @@ extern "x86-interrupt" fn keyboard_interrupt_handler(_stack_frame: InterruptStac
182
}
183
184
KeyCode::ArrowLeft => {
185
+ // TODO #29: Limits & newlines
186
#[cfg(debug_assertions)]
187
WRITER.lock().decrement_column_position();
188
189
190
KeyCode::ArrowRight => {
191
192
193
WRITER.lock().increment_column_position();
194
0 commit comments