You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Now telescope.nvim needs Neovim 0.9.x and it is written in README. Should we think about changing this to 0.10.x?
With using 0.10.x, we can use new features, such as vim.iter, vim.system, ……, and can remove polyfills for avoiding deprecation messages (for vim.tbl_flatten and so on).
Describe the solution you'd like
Update README to write this plugin needs 0.10.x.
Describe alternatives you've considered
Additional context telescope-frecency.nvim follows telescope.nvim for minimum requirements. If telescope.nvim makes minimum to 0.10.x, it is happy that we can use vim.iter in telescope-frecency.nvim.
And I strongly encourage followup PRs to move to Neovim API as much as possible (vim.fs, vim.system, etc.; there's also a minimal async module used in several plugins that we're hoping to get into core one of these days as well as a minimal log module).
Also, nvim_strwidth is a thing and should be fast-safe, as is charwidth() (or, better yet, vim.utf_str*). So no reason for FFI tomfoolery with strings!
Is your feature request related to a problem? Please describe.
Now telescope.nvim needs Neovim 0.9.x and it is written in README. Should we think about changing this to 0.10.x?
With using 0.10.x, we can use new features, such as
vim.iter
,vim.system
, ……, and can remove polyfills for avoiding deprecation messages (forvim.tbl_flatten
and so on).Describe the solution you'd like
Update README to write this plugin needs 0.10.x.
Describe alternatives you've considered
Additional context
telescope-frecency.nvim follows telescope.nvim for minimum requirements. If telescope.nvim makes minimum to 0.10.x, it is happy that we can use
vim.iter
in telescope-frecency.nvim.ref nvim-telescope/telescope-frecency.nvim#259
The text was updated successfully, but these errors were encountered: