refactor(nvim): telescope keybind descriptions

This commit is contained in:
Moritz Böhme 2025-07-31 16:19:36 +02:00
parent 5596e63efd
commit 0018b0cd99
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9

View file

@ -34,7 +34,7 @@ _: {
}; };
"<leader>fl" = { "<leader>fl" = {
action = "current_buffer_fuzzy_find"; action = "current_buffer_fuzzy_find";
options.desc = "Search lines"; options.desc = "Find lines";
}; };
"<leader>fg" = { "<leader>fg" = {
action = "live_grep"; action = "live_grep";
@ -42,7 +42,7 @@ _: {
}; };
"<leader>fh" = { "<leader>fh" = {
action = "help_tags"; action = "help_tags";
options.desc = "Help tags"; options.desc = "Find help tags";
}; };
"<leader>fr" = { "<leader>fr" = {
action = "oldfiles"; action = "oldfiles";
@ -50,7 +50,7 @@ _: {
}; };
"<leader>fc" = { "<leader>fc" = {
action = "commands"; action = "commands";
options.desc = "Commands"; options.desc = "Find Commands";
}; };
}; };
}; };