hismailbulut / Neoray

Simple and lightweight GUI client for Neovim
MIT License
148 stars 5 forks source link

Neoray window does not show up when using telescope plugin #43

Closed bunyk closed 1 year ago

bunyk commented 1 year ago

Please complete the following information:

Describe the bug So, when I add telescope plugin to my configuration, neoray does not render a window, logs show only

[TRACE] [NVIM] Neovim version 0.6.0
[TRACE] [NEORAY] Glfw version: 3.3.4 X11 GLX EGL OSMesa clock_gettime evdev
[TRACE] [RENDERER] Opengl Version: 4.6 (Core Profile) Mesa 23.0.4-0ubuntu1~22.04.1

With empty config, logs show also:

[TRACE] [PERFORMANCE] Start time: 244.718002ms
...

Not sure if it is related to #33 , but very similar behaviour.

Steps to reproduce Just add a plugin like shown in config:

Your neoray config in init.vim (Only the part that concerns neoray!)

call plug#begin('~/.vim/plugged')

Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.4' }

" Initialize plugin system
call plug#end()

Crash log if available (may be generated by neoray after crash)

Debug output (you can generate starting neoray with --verbose option)

hismailbulut commented 1 year ago

I tried with latest neovim version (0.9.4) and it works When I tried with neovim 0.6.0 as you used it doesn't work and it says telescope.nvim requires nvim version at least 0.7 I am not sure why it doesn't show the window. What is your neoray version? Your version information in the issue is wrong I think you misread it and put neovim version here. Let me know if it happens when you use latest from releases page. It should show the error message from telescope

bunyk commented 1 year ago

Yes, works with updated neovim and neoray (built from current master with make build, make release currently complains about missing function bodies).

Thank you.