Skip to content

Commit

Permalink
hotfix(mappings): enable the theme picker
Browse files Browse the repository at this point in the history
  • Loading branch information
sravioli committed Jul 19, 2024
1 parent 1002d5b commit 778e44f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion mappings/default.lua
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ local mappings = {
},
{ "<leader>c", act.ActivateCopyMode, "copy mode" },
{ "<leader>s", act.Search "CurrentSelectionOrEmptyString", "search mode" },
-- { "<leader>p", act.ActivateKeyTable { name = "pick_mode" }, "pick mode" },
{ "<leader>p", act.ActivateKeyTable { name = "pick_mode" }, "pick mode" },
}

for i = 1, 24 do
Expand Down
8 changes: 4 additions & 4 deletions mappings/modes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,10 @@ local key_tables = {
-- }}}

-- {{{1 PICK MODE (pick_mode)
-- pick_mode = {
-- { "<ESC>", "PopKeyTable", "exit" },
-- { "t", require("picker.theme"):pick(), "theme picker" },
-- }, -- }}}
pick_mode = {
{ "<ESC>", "PopKeyTable", "exit" },
{ "t", require("picker.theme"):pick(), "theme picker" },
}, -- }}}
}

Config.key_tables = {}
Expand Down

0 comments on commit 778e44f

Please sign in to comment.