We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c28d8a8 commit 9aa1de6Copy full SHA for 9aa1de6
lua/haskell-tools/tags.lua
@@ -19,7 +19,7 @@ local function setup_fast_tags(config)
19
-- for the project (default: true)
20
function M.generate_project_tags(path, opts)
21
path = path or vim.api.nvim_buf_get_name(0)
22
- vim.tbl_extend('force', { refresh = true }, opts or {})
+ opts = vim.tbl_extend('force', { refresh = true }, opts or {})
23
local project_root = project_util.match_project_root(path) or vim.fn.getcwd()
24
if opts.refresh == false and _state.projects[project_root] then
25
-- project tags already generated
0 commit comments