Skip to content

Commit

Permalink
fix(skim): fix auto-detect (closes #1574)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibhagwan committed Dec 16, 2024
1 parent 8330321 commit 8d35de5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/fzf-lua/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ function M.normalize_opts(opts, globals, __resume_key)
end

-- are we using skim?
opts._is_skim = opts.fzf_bin:find("sk") ~= nil
opts._is_skim = opts.fzf_bin:match("sk$") ~= nil

-- enforce fzf minimum requirements
vim.g.fzf_lua_fzf_version = nil
Expand Down

0 comments on commit 8d35de5

Please sign in to comment.