We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd281b9 commit 5174472Copy full SHA for 5174472
1 file changed
lua/fzf-lua/providers/tags.lua
@@ -201,7 +201,7 @@ M.btags = function(opts)
201
-- Used as fallback to pipe the tags into fzf from stdout
202
opts._btags_cmd = string.format("%s %s %s",
203
opts.ctags_bin or "ctags",
204
- opts.ctags_args or "-f - --excmd=combine",
+ opts.ctags_args or "-f - " .. (utils.is_darwin() and "" or "--excmd=combine"),
205
libuv.shellescape(opts.filename))
206
if opts.ctags_autogen then
207
opts.cmd = opts.cmd or opts._btags_cmd
0 commit comments