JINNOUCHI Yasushi

Results 138 comments of JINNOUCHI Yasushi

You mean, after you renamed `temp\Test.py` into `temp\test.py` and did `:FrecencyValidate`, it still shows both files in candidates, right? Strange. I will look into this further.

I found the cause. The decision to distinguish the file's existence depends on `vim.uv.fs_stat(filename).type == "file"`. Even if the filename is `foo.lua`, `fs_stat("Foo.lua")` returns stat for `foo.lua` implicitly. Capital or...

I'm thinking about an implementation to detect accurate filenames for removing entries. ```lua local function path_exist(path) local parent = vim.fs.dirname(path) local dir = uv.fs_opendir(parent) local entries = uv.fs_readdir(dir) for _,...

I stopped to implement this logic above because a significant problem occurs -- symlink. It is too difficult to manage targets if they are symlinks. I also found one more...

Now we use realpath to detect filenames. For this case, `:FrecencyValidate` detects the file definitely exists and removes the entry from DB if it does not exist.

1. At first, this picker does not do fuzzy matching in default. Have you set `matcher = "fuzzy"` in your opts? 2. If not, whether you can use capital characters...

I cannot reproduce this with minimal config below. minimal init.lua ```lua local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim" if not (vim.uv or vim.loop).fs_stat(lazypath) then vim.fn.system { "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git",...

I tested, but still see E5560 mentioned [here](https://github.com/nvim-telescope/telescope-frecency.nvim/issues/243#issuecomment-2297832673) with this patch. @ttytm Perhaps, have you installed a plugin that overwrites `vim.ui.select` such as [dressing.nvim](https://github.com/stevearc/dressing.nvim)? With such plugins, `vim.ui.select` runs asynchronously,...

The upstream telscope's issue seems not to be processed. I start to think remove these deprecation warnings by bumping up this plugin's minimal requirements to v0.10.0.

telescope.nvim still have not remove 0.9 support. In advance I will do it for telescope-frecency in #275.