telescope-arecibo.nvim
telescope-arecibo.nvim copied to clipboard
telescope arecibo.nvim triggers invalid buffer id
Description
Not sure if I should report this here
When I run :lua require("telescope").extensions.arecibo.websearch() and search for something, the messages prompt is filled with telescope/pickers.lua:653: Invalid buffer id: and neovim crashes
Expected Behavior
give a prompt of results for the searched keyword
Actual Behavior
All the buffers are empty and :messages is filled with function: builtin#18 ...ck/packer/start/telescope.nvim/lua/telescope/pickers.lua:653: Invalid buffer id: followed by a buffer number
Details
Reproduce
- nvim -nu test.vim
- :lua require("telescope").extensions.arecibo.websearch()
- search for something in the prompt
- results and preview window is blank and messages is filled with
function: builtin#18 ...ck/packer/start/telescope.nvim/lua/telescope/pickers.lua:653: Invalid buffer id:
Environment
- nvim --version output: NVIM v0.6.0-dev Build type: RelWithDebInfo LuaJIT 2.1.0-beta3 Compilation: /usr/bin/cc -g -O2 -ffile-prefix-map=/build/neovim-6pnwva/neovim-0.5.0+ubuntu2+git202107142014-19a2e59f7-d569569c9=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DNVIM_TS_HAS_SET_MATCH_LIMIT -O2 -g -Og -g -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wshadow -Wconversion -Wmissing-prototypes -Wimplicit-fallthrough -Wvla -fstack-protector-strong -fno-common -fdiagnostics-color=auto -DINCLUDE_GENERATED_DECLARATIONS -D_GNU_SOURCE -DNVIM_MSGPACK_HAS_FLOAT32 -DNVIM_UNIBI_HAS_VAR_FROM -DMIN_LOG_LEVEL=3 -I/build/neovim-6pnwva/neovim-0.5.0+ubuntu2+git202107142014-19a2e59f7-d569569c9/build/config -I/build/neovim-6pnwva/neovim-0.5.0+ubuntu2+git202107142014-19a2e59f7-d569569c9/src -I/build/neovim-6pnwva/neovim-0.5.0+ubuntu2+git202107142014-19a2e59f7-d569569c9/.deps/usr/include -I/usr/include -I/build/neovim-6pnwva/neovim-0.5.0+ubuntu2+git202107142014-19a2e59f7-d569569c9/build/src/nvim/auto -I/build/neovim-6pnwva/neovim-0.5.0+ubuntu2+git202107142014-19a2e59f7-d569569c9/build/include Compiled by buildd@lgw01-amd64-025
Features: +acl +iconv +tui See ":help feature-compile"
system vimrc file: "$VIM/sysinit.vim" fall-back for $VIM: "/usr/share/nvim"
Run :checkhealth for more info
- Operating system: Ubuntu 21.04
- Telescope commit: 37a3a68
Configuration
set nocompatible hidden laststatus=2
if !filereadable('/tmp/plug.vim')
silent !curl --insecure -fLo /tmp/plug.vim
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
endif
source /tmp/plug.vim
call plug#begin('/tmp/plugged')
Plug 'nvim-lua/popup.nvim'
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim'
Plug 'nvim-telescope/telescope-arecibo.nvim'
call plug#end()
autocmd VimEnter * PlugClean! | PlugUpdate --sync | close
lua require('telescope').setup()
I just installed it today and I am getting the same error too.