From bc0db2751c93c025ccf8794220137ced14aa3394 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Mon, 20 May 2024 22:00:56 +0100 Subject: [PATCH] plugins/telescope: support non-builtin keymaps Use the `:Telescope` command instead of relying directly on `require("telescope.builtin")`. --- plugins/telescope/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/telescope/default.nix b/plugins/telescope/default.nix index f8863980..16236489 100644 --- a/plugins/telescope/default.nix +++ b/plugins/telescope/default.nix @@ -90,7 +90,7 @@ helpers.neovim-plugin.mkNeovimPlugin config { { mode = mapping.mode or "n"; inherit key; - action.__raw = "require('telescope.builtin').${actionStr}"; + action = "Telescope ${actionStr}"; options = { silent = cfg.keymapsSilent;