From bcbd20b6904fbfc7224dd995fc414fd094c84276 Mon Sep 17 00:00:00 2001 From: bhagwan Date: Thu, 3 Mar 2022 21:12:09 -0800 Subject: [PATCH] added missing '_ctag' actions modifier --- lua/fzf-lua/providers/tags.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/fzf-lua/providers/tags.lua b/lua/fzf-lua/providers/tags.lua index 5248b85..539b0fc 100644 --- a/lua/fzf-lua/providers/tags.lua +++ b/lua/fzf-lua/providers/tags.lua @@ -183,6 +183,8 @@ local function tags(opts) return end + -- signal actions this is a ctag + opts._ctag = true opts._ctags_file = opts.cwd and path.join({opts.cwd, opts.ctags_file}) or opts.ctags_file opts._curr_file = opts._curr_file and path.relative(opts._curr_file, opts.cwd or vim.loop.cwd()) opts.cmd = opts.cmd or get_tags_cmd(opts)