get_single_char reads Tab as \t
This commit is contained in:
@@ -81,6 +81,10 @@ pub fn get_single_char() -> char {
|
||||
c = '\n';
|
||||
break;
|
||||
},
|
||||
KeyCode::Tab => {
|
||||
c = '\t';
|
||||
break;
|
||||
},
|
||||
_ => ()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user