Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions codex-rs/config/src/tui_keymap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,8 @@ pub struct TuiVimNormalKeymap {
pub repeat_find: Option<KeybindingsSpec>,
/// Repeat the most recent find/till motion in the opposite direction (`,`).
pub repeat_find_reverse: Option<KeybindingsSpec>,
/// Repeat the most recent text-changing Vim command (`.`).
pub repeat_change: Option<KeybindingsSpec>,
/// Delete character under cursor (`x`).
pub delete_char: Option<KeybindingsSpec>,
/// Delete from cursor to end of line (`D`).
Expand Down
10 changes: 10 additions & 0 deletions codex-rs/core/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2845,6 +2845,7 @@
"open_line_above": null,
"open_line_below": null,
"paste_after": null,
"repeat_change": null,
"repeat_find": null,
"repeat_find_reverse": null,
"select_register": null,
Expand Down Expand Up @@ -3553,6 +3554,7 @@
"open_line_above": null,
"open_line_below": null,
"paste_after": null,
"repeat_change": null,
"repeat_find": null,
"repeat_find_reverse": null,
"select_register": null,
Expand Down Expand Up @@ -4021,6 +4023,14 @@
],
"description": "Paste after cursor (`p`)."
},
"repeat_change": {
"allOf": [
{
"$ref": "#/definitions/KeybindingsSpec"
}
],
"description": "Repeat the most recent text-changing Vim command (`.`)."
},
"repeat_find": {
"allOf": [
{
Expand Down
Loading
Loading