keymap: Update Prev to Previous follow-up (#25931)

Follow-up for https://github.com/zed-industries/zed/pull/25909

Add three more action replacements:

```
1. "pane::ActivatePrevItem" -> "pane::ActivatePreviousItem"
2. "vim::MoveToPrev" -> "vim::MoveToPrevious"
3. "vim:MoveToPrevMatch" -> "vim:MoveToPreviousMatch" 
```

Release Notes:

- N/A
This commit is contained in:
smit 2025-03-03 21:19:25 +05:30 committed by GitHub
parent 466be14b56
commit 8bb2739e28
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 42 additions and 34 deletions

View file

@ -172,7 +172,7 @@ impl_actions!(
actions!(
pane,
[
ActivatePrevItem,
ActivatePreviousItem,
ActivateNextItem,
ActivateLastItem,
AlternateFile,
@ -3203,7 +3203,7 @@ impl Render for Pane {
}),
)
.on_action(
cx.listener(|pane: &mut Pane, _: &ActivatePrevItem, window, cx| {
cx.listener(|pane: &mut Pane, _: &ActivatePreviousItem, window, cx| {
pane.activate_prev_item(true, window, cx);
}),
)