JINNOUCHI Yasushi
JINNOUCHI Yasushi
Another solution, I recently made an asynchronous finder to search files under a directory. https://github.com/nvim-telescope/telescope-frecency.nvim/blob/2ac311a2666edb447db5139b326777c44adc1e2a/lua/frecency/async_finder.lua It runs a thread (coroutine) created by `plenary.async` and makes candidates in background. The picker's...
1. At first, [packer.nvim](https://github.com/wbthomason/packer.nvim) already have been deprecated and does not support Neovim 0.10. 2. This plugin doesn't need [sqlite.lua](https://github.com/kkharji/sqlite.lua) now. I recommend you to try with [lazy.nvim](https://github.com/folke/lazy.nvim) and a...
I can't support envs with deprecated products. Especially, plugin managers are the fundamental product that can cause various problems. I cannot debug them because I'm not the author of packer.nvim.
Oh, yes. Thank you. I could reproduce it with macOS and Wezterm. I will look into further.
Hmm... I found this diff below can solve this. But why…… ```diff diff --git a/lua/frecency/database.lua b/lua/frecency/database.lua index 27c5bf4..af24a4e 100644 --- a/lua/frecency/database.lua +++ b/lua/frecency/database.lua @@ -30,6 +30,7 @@ Database.new = function(fs)...
Maybe, `vim.wait` causes this, I think. ```diff diff --git a/lua/frecency/database.lua b/lua/frecency/database.lua index 27c5bf4..79c197e 100644 --- a/lua/frecency/database.lua +++ b/lua/frecency/database.lua @@ -70,7 +70,7 @@ end ---@return boolean function Database:has_entry() - return not...
@uloco FYI I still have been inquiring, but a stopgap measure exists for this. This problem is caused by calling `telescope.load_extension "frecency"` in startup. In fact, this is not needed...
I found #213 can solve this. But I can't understand the reason. 🤔 🤔 🤔
I cannot find the cause, but #210's diff seems to solve this. Try on the master.
Hmm, I can't reproduce. 1. I wrote a minimal `init.lua` to `~/.config/nvim-frecency/init.lua` like below, code: ~/.config/nvim-frecency/init.lua ```lua local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim" if not vim.loop.fs_stat(lazypath) then vim.fn.system {...