AckslD / nvim-neoclip.lua

Clipboard manager neovim plugin with telescope integration
994 stars 20 forks source link

fzf-lua list not updating after first open #80

Closed abidibo closed 2 years ago

abidibo commented 2 years ago

Hi, this is my problem:

If I run print(vim.inspect(require('neoclip.storage').get())) I can see al updated entries.

My config:

Plug 'AckslD/nvim-neoclip.lua'

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" nvim-neoclip
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
lua require'neoclip'.setup{
            \ requires = { 'ibhagwan/fzf-lua' },
            \ continuous_sync = true,
      \ }

nnoremap <space>y <cmd>lua require('neoclip.fzf')()<CR>

I've just updated all plugins, so I should have all updated versions of both fzf-lua and nvim-neoclip.lua

Thanks!

AckslD commented 2 years ago

Thanks for reporting! Maybe @ibhagwan might directly know what is going on here? I'm soon travelling so not sure I'll be able to try this myself in the near term unfortunately.

ibhagwan commented 2 years ago

@abidibo, https://github.com/AckslD/nvim-neoclip.lua/pull/81 should solve it, before this gets merged you can try it using my fork.

@AckslD, few notes:

abidibo commented 2 years ago

@AckslD, @ibhagwan thank you very much. I can confirm the fork is working properly. I wont close the issue sicne you probably will do it after merging.