about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2024-05-12 22:20:31 +0900
committersefidel <contact@sefidel.net>2024-05-12 22:20:31 +0900
commit7b5df96bd374ac0feb86272c0f6fceb5e6177039 (patch)
treebe492a48475d5f6ecde06799eba68efc7d1d95ac
parent08cfa41d3984de898c0ff90515408097cbddc57b (diff)
downloadnvimrc-7b5df96bd374ac0feb86272c0f6fceb5e6177039.tar.gz
nvimrc-7b5df96bd374ac0feb86272c0f6fceb5e6177039.zip
feat(packs/treesitter)!: m->f on move keybinds
-rw-r--r--fnl/nvrc/packs/treesitter.fnl8
1 files changed, 4 insertions, 4 deletions
diff --git a/fnl/nvrc/packs/treesitter.fnl b/fnl/nvrc/packs/treesitter.fnl
index 4cd5e55..6537532 100644
--- a/fnl/nvrc/packs/treesitter.fnl
+++ b/fnl/nvrc/packs/treesitter.fnl
@@ -41,12 +41,12 @@
                                              :<M-k> "@function.outer"}}
                       :move {:enable true
                              :set_jumps true
-                             :goto_next_start {"]m" "@function.outer"
+                             :goto_next_start {"]f" "@function.outer"
                                                "][" "@class.outer"}
-                             :goto_next_end {"]M" "@function.outer"
+                             :goto_next_end {"]F" "@function.outer"
                                              "]]" "@class.outer"}
-                             :goto_previous_start {"[m" "@function.outer"
+                             :goto_previous_start {"[f" "@function.outer"
                                                    "[[" "@class.outer"}
-                             :goto_previous_end {"[M" "@function.outer"
+                             :goto_previous_end {"[F" "@function.outer"
                                                  "[]" "@class.outer"}}}
         :indent {:enable true}})