diff options
| author | Denis Cornehl <denis@cornehl.org> | 2021-10-28 12:34:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-28 12:34:46 +0200 |
| commit | 99a3988d6e547f98eafe7209e5403ddcbcc89cb6 (patch) | |
| tree | 50aecf610b01c56d3733911f9fa65a7466eee715 /lua | |
| parent | 580932129003b7064d32337a9f25a168ff2f158e (diff) | |
fix: buitin.tags broke when tags-file was in wildignore (#1387)
regression from
6f829bf6bc333809dd97e532dbc88a7fcf297b02
https://github.com/nvim-telescope/telescope.nvim/pull/1122
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/telescope/builtin/files.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/builtin/files.lua b/lua/telescope/builtin/files.lua index 8b005bc..0093e59 100644 --- a/lua/telescope/builtin/files.lua +++ b/lua/telescope/builtin/files.lua @@ -566,7 +566,7 @@ files.tags = function(opts) local results = {} for _, ctags_file in ipairs(tagfiles) do - for line in Path:new(vim.fn.expand(ctags_file)):iter() do + for line in Path:new(vim.fn.expand(ctags_file, true)):iter() do results[#results + 1] = line end end |
