Skip to content

Commit d45ea97

Browse files
committed
add todo for #29
1 parent a7eb5e7 commit d45ea97

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

kernel/src/interrupts.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,11 +182,13 @@ extern "x86-interrupt" fn keyboard_interrupt_handler(_stack_frame: InterruptStac
182182
}
183183

184184
KeyCode::ArrowLeft => {
185+
// TODO #29: Limits & newlines
185186
#[cfg(debug_assertions)]
186187
WRITER.lock().decrement_column_position();
187188
}
188189

189190
KeyCode::ArrowRight => {
191+
// TODO #29: Limits & newlines
190192
#[cfg(debug_assertions)]
191193
WRITER.lock().increment_column_position();
192194
}

0 commit comments

Comments
 (0)