-
I have local add, later = MiniDeps.add, MiniDeps.later
later(function()
local function make_fzf_native(params)
vim.notify("Building fzf native extension", vim.log.levels.INFO)
vim.cmd("lcd " .. params.path)
vim.cmd("!make -s")
vim.cmd("lcd -")
end
add({
source = 'nvim-telescope/telescope.nvim',
checkout = '0.1.6',
depends = {
'nvim-lua/plenary.nvim',
{
source = 'nvim-telescope/telescope-fzf-native.nvim',
hooks = {
post_checkout = make_fzf_native,
}
},
},
hooks = {
post_checkout = function(params)
vim.notify("Test", vim.log.levels.INFO)
end
}
})
local telescope = require('telescope')
-- telescope.load_extension('fzf')
end) Yet I cannot seem to get neither the notifications to appear nor the build from fzf. |
Beta Was this translation helpful? Give feedback.
Answered by
vabatta
Apr 30, 2024
Replies: 1 comment 1 reply
-
It worked by also adding |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
echasnovski
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It worked by also adding
post_install = make_fzf_native,
.