Skip to content

Commit

Permalink
fix(telescope): consistent keymap description. Fixes #600
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Apr 17, 2023
1 parent 0155de0 commit df9547f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/lazyvim/plugins/editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ return {
version = false, -- telescope did only one release, so use HEAD for now
keys = {
{ "<leader>,", "<cmd>Telescope buffers show_all_buffers=true<cr>", desc = "Switch Buffer" },
{ "<leader>/", Util.telescope("live_grep"), desc = "Find in Files (Grep)" },
{ "<leader>/", Util.telescope("live_grep"), desc = "Grep (root dir)" },
{ "<leader>:", "<cmd>Telescope command_history<cr>", desc = "Command History" },
{ "<leader><space>", Util.telescope("files"), desc = "Find Files (root dir)" },
-- find
Expand Down Expand Up @@ -226,7 +226,7 @@ return {
["["] = { name = "+prev" },
["<leader><tab>"] = { name = "+tabs" },
["<leader>b"] = { name = "+buffer" },
["<leader>c"] = { name = "+code" },
["<leader><lll"] = { name = "+code" },

This comment has been minimized.

Copy link
@kcaashish

kcaashish Apr 17, 2023

Contributor

This might be something you didn't intend to do. @folke

This comment has been minimized.

Copy link
@folke

folke Apr 17, 2023

Author Collaborator

oops, you're right. Reverting!

["<leader>f"] = { name = "+file/find" },
["<leader>g"] = { name = "+git" },
["<leader>gh"] = { name = "+hunks" },
Expand Down

0 comments on commit df9547f

Please sign in to comment.