We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems that vim.tbl_flatten is going to be deprecated in Nvim0.13 and I am now getting a deprecation warning for it
vim.tbl_flatten
- WARNING vim.tbl_flatten is deprecated. Feature will be removed in Nvim 0.13 - ADVICE: - use vim.iter(…):flatten():totable() instead. - stack traceback: /home/user/.local/share/nvim/lazy/telescope-live-grep-args.nvim/lua/telescope/_extensions/live_grep_args.lua:49 /home/user/.local/share/nvim/lazy/telescope.nvim/lua/telescope/finders/async_job_finder.lua:12 /home/userli/.local/share/nvim/lazy/telescope.nvim/lua/telescope/finders/async_job_finder.lua:34 /home/user/.local/share/nvim/lazy/telescope.nvim/lua/telescope/pickers.lua:494 [C]:-1 /home/user/.local/share/nvim/lazy/telescope.nvim/lua/telescope/pickers.lua:493
NVIM v0.11.0-dev-292+g0e3e1e6b6 Build type: RelWithDebInfo LuaJIT 2.1.1716656478
Ubuntu 22.04
0.1.x a0bbec21143c7bc5f8bb02e0005fa0b982edc026
master 8ad632f
============================================================================== telescope: health#telescope#check Checking for required plugins ~ - OK plenary installed. - OK nvim-treesitter installed. Checking external dependencies ~ - OK rg: found ripgrep 14.1.0 - OK fd: found fd 8.3.1 ===== Installed extensions ===== ~ Telescope Extension: `file_browser` ~ - No healthcheck provided Telescope Extension: `fzf` ~ - OK lib working as expected - OK file_sorter correctly configured - OK generic_sorter correctly configured Telescope Extension: `live_grep_args` ~ - No healthcheck provided Telescope Extension: `ui-select` ~ - No healthcheck provided Telescope Extension: `undo` ~ - No healthcheck provided Telescope Extension: `yaml_schema` ~ - No healthcheck provided
No response
Deprecation Warning
vim.cmd [[set runtimepath=$VIMRUNTIME]] vim.cmd [[set packpath=/tmp/nvim/site]] local package_root = '/tmp/nvim/site/pack' local install_path = package_root .. '/packer/start/packer.nvim' local function load_plugins() require('packer').startup { { 'wbthomason/packer.nvim', { 'nvim-telescope/telescope.nvim', requires = { 'nvim-lua/plenary.nvim', { 'nvim-telescope/telescope-fzf-native.nvim', run = 'make', }, { 'nvim-telescope/telescope-live-grep-args.nvim', }, }, }, -- ADD PLUGINS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE }, config = { package_root = package_root, compile_path = install_path .. '/plugin/packer_compiled.lua', display = { non_interactive = true }, }, } end _G.load_config = function() require('telescope').setup() require('telescope').load_extension('fzf') require('telescope').load_extension('live_grep_args') -- ADD INIT.LUA SETTINGS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE end if vim.fn.isdirectory(install_path) == 0 then print("Installing Telescope and dependencies.") vim.fn.system { 'git', 'clone', '--depth=1', 'https://github.com/wbthomason/packer.nvim', install_path } end load_plugins() require('packer').sync() vim.cmd [[autocmd User PackerComplete ++once echo "Ready!" | lua load_config()]]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
It seems that
vim.tbl_flatten
is going to be deprecated in Nvim0.13 and I am now getting a deprecation warning for itNeovim version
Operating system and version
Ubuntu 22.04
Telescope version / branch / rev
0.1.x a0bbec21143c7bc5f8bb02e0005fa0b982edc026
Telescope live grep args version / branch / rev
master 8ad632f
checkhealth telescope
Steps to reproduce
Expected behavior
No response
Actual behavior
Deprecation Warning
Minimal config
The text was updated successfully, but these errors were encountered: