fix: change replace keybind description

This commit is contained in:
darcy 2025-01-02 15:11:36 +11:00 committed by sxyazi
parent 873f47d214
commit 8c92fa9f53
No known key found for this signature in database

View file

@ -238,7 +238,7 @@ keymap = [
{ on = "A", run = [ "move 999", "insert --append" ], desc = "Move to the EOL, and enter append mode" },
{ on = "v", run = "visual", desc = "Enter visual mode" },
{ on = "V", run = [ "move -999", "visual", "move 999" ], desc = "Enter visual mode and select all" },
{ on = "r", run = "replace", desc = "Enter replace mode" },
{ on = "r", run = "replace", desc = "Replace a single character" },
# Character-wise movement
{ on = "h", run = "move -1", desc = "Move back a character" },