Fix moving with arrow keys in prompt (#1070)
This commit is contained in:
parent
e0540fbcc4
commit
c7cb7527be
1 changed files with 2 additions and 2 deletions
|
@ -430,8 +430,8 @@ impl Component for Prompt {
|
|||
}
|
||||
alt!('b') | alt!(Left) => self.move_cursor(Movement::BackwardWord(1)),
|
||||
alt!('f') | alt!(Right) => self.move_cursor(Movement::ForwardWord(1)),
|
||||
ctrl!('b') | ctrl!(Left) => self.move_cursor(Movement::BackwardChar(1)),
|
||||
ctrl!('f') | ctrl!(Right) => self.move_cursor(Movement::ForwardChar(1)),
|
||||
ctrl!('b') | key!(Left) => self.move_cursor(Movement::BackwardChar(1)),
|
||||
ctrl!('f') | key!(Right) => self.move_cursor(Movement::ForwardChar(1)),
|
||||
ctrl!('e') | key!(End) => self.move_end(),
|
||||
ctrl!('a') | key!(Home) => self.move_start(),
|
||||
ctrl!('w') => self.delete_word_backwards(),
|
||||
|
|
Loading…
Add table
Reference in a new issue