From 1eb6a773e5a0369bcdd38cdc4cf94077156d9753 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Fri, 14 Feb 2025 20:24:04 +0100 Subject: [PATCH] feat(vim): add f and F keybindings for move_to_char --- src/keybind/builtin/vim.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/keybind/builtin/vim.json b/src/keybind/builtin/vim.json index a3ba41f..3871c22 100644 --- a/src/keybind/builtin/vim.json +++ b/src/keybind/builtin/vim.json @@ -85,6 +85,9 @@ ["", "TODO"], + ["F", "move_to_char", "left"], + ["f", "move_to_char", "right"], + ["", ["move_down"], ["move_begin"]], ["", ["move_down"], ["move_begin"]] ]