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 '';