Skip to content

Commit

Permalink
chore: remove dot at the beginning (nvim-telescope#1552)
Browse files Browse the repository at this point in the history
We added this for rg 13.0 release because it was needed but it doesnt
seem to be needed anymore. Weird

This might be due to some changes in neovim or due to changes to jobs
  • Loading branch information
Conni2461 authored Dec 27, 2021
1 parent 802fe5d commit 8843780
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lua/telescope/builtin/files.lua
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,6 @@ files.live_grep = function(opts)

if search_dirs then
table.insert(search_list, search_dirs)
else
table.insert(search_list, ".")
end

if grep_open_files then
Expand Down Expand Up @@ -137,8 +135,6 @@ files.grep_string = function(opts)
for _, path in ipairs(search_dirs) do
table.insert(args, vim.fn.expand(path))
end
else
table.insert(args, ".")
end

pickers.new(opts, {
Expand Down

0 comments on commit 8843780

Please sign in to comment.