Skip to content

Commit

Permalink
Add Ctrl-E for hint completion
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrea Orru committed Jun 20, 2020
1 parent 6b07ef0 commit 5c53b78
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/keymap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,7 @@ impl InputState {
Cmd::Move(Movement::ForwardChar(n))
}
}
KeyPress::Ctrl('E') if wrt.has_hint() => Cmd::CompleteHint,
KeyPress::Ctrl('E') => Cmd::Move(Movement::EndOfLine),
KeyPress::Ctrl('F') => {
if positive {
Expand Down

0 comments on commit 5c53b78

Please sign in to comment.