From 254244ddc72832c4fff841b27a39d6de071ded4e Mon Sep 17 00:00:00 2001 From: Nicolas Goudry Date: Mon, 10 Jun 2024 08:04:28 +0200 Subject: [PATCH] fix(plugins/neo-tree): telescope function call signature --- plugins/neo-tree.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/neo-tree.nix b/plugins/neo-tree.nix index 91abadc..2b081f8 100644 --- a/plugins/neo-tree.nix +++ b/plugins/neo-tree.nix @@ -92,7 +92,7 @@ function(state) local node = state.tree:get_node() local path = node.type == "file" and node:get_parent_id() or node:get_id() - TelescopeWithTheme('find_files', { cwd = path }) + TelescopeWithTheme('find_files', { cwd = path }, "") end ''; @@ -101,7 +101,7 @@ function(state) local node = state.tree:get_node() local path = node.type == "file" and node:get_parent_id() or node:get_id() - TelescopeWithTheme('live_grep', { cwd = path }) + TelescopeWithTheme('live_grep', { cwd = path }, "") end '';