aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--book/src/keymap.md8
-rw-r--r--helix-term/src/ui/picker.rs8
2 files changed, 8 insertions, 8 deletions
diff --git a/book/src/keymap.md b/book/src/keymap.md
index 374513be..e588ac92 100644
--- a/book/src/keymap.md
+++ b/book/src/keymap.md
@@ -331,10 +331,10 @@ Keys to use within picker. Remapping currently not supported.
| Key | Description |
| ----- | ------------- |
-| `Up`, `Ctrl-k`, `Ctrl-p` | Previous entry |
-| `PageUp`, `Ctrl-b` | Page up |
-| `Down`, `Ctrl-j`, `Ctrl-n` | Next entry |
-| `PageDown`, `Ctrl-f` | Page down |
+| `Up`, `Ctrl-p` | Previous entry |
+| `PageUp`, `Ctrl-u` | Page up |
+| `Down`, `Ctrl-n` | Next entry |
+| `PageDown`, `Ctrl-d` | Page down |
| `Home` | Go to first entry |
| `End` | Go to last entry |
| `Ctrl-space` | Filter options |
diff --git a/helix-term/src/ui/picker.rs b/helix-term/src/ui/picker.rs
index 42c42284..dec59c89 100644
--- a/helix-term/src/ui/picker.rs
+++ b/helix-term/src/ui/picker.rs
@@ -498,16 +498,16 @@ impl<T: 'static> Component for Picker<T> {
})));
match key_event.into() {
- shift!(Tab) | key!(Up) | ctrl!('p') | ctrl!('k') => {
+ shift!(Tab) | key!(Up) | ctrl!('p') => {
self.move_by(1, Direction::Backward);
}
- key!(Tab) | key!(Down) | ctrl!('n') | ctrl!('j') => {
+ key!(Tab) | key!(Down) | ctrl!('n') => {
self.move_by(1, Direction::Forward);
}
- key!(PageDown) | ctrl!('f') => {
+ key!(PageDown) | ctrl!('d') => {
self.page_down();
}
- key!(PageUp) | ctrl!('b') => {
+ key!(PageUp) | ctrl!('u') => {
self.page_up();
}
key!(Home) => {