Iordanis Petkakis
Iordanis Petkakis
You can do that with `cond` property already. Something like ```lua cond = function() return vim.uv.fs_stat(vim.loop.cwd() .. "/.git") or vim.fn.finddir(".git", ";") ~= "" end, ``` Just specify the `cond` in...
This will cause problems in Neovim
I don't know how Folke wants to handle it with regards to dropping support on Neovim
That is dependent on the colorscheme that you use and the `yanky.nvim` plugin itself. Tokyonight already does this as can be seen [here](https://github.com/folke/tokyonight.nvim/blob/057ef5d260c1931f1dffd0f052c685dcd14100a3/lua/tokyonight/groups/yanky.lua#L9-L10). So, this should be changed in the...
I understand what you're saying as far as a new user is concerned, but I respectfully think that either the colorscheme or the plugin itself is responsible for setting appropriate...
You can pass into grep something like `dirs = { vim.api.nvim_buf_get_name(buf) }` to search within that specific buffer. Maybe you can implement a logic to populate `opts.dirs` according to what...