adalessa / laravel.nvim

Plugin for Nvim to work with laravel projects.
MIT License
280 stars 15 forks source link

Laravel artisan command does not open telescope first time it is run #68

Closed dorkster100 closed 9 months ago

dorkster100 commented 9 months ago

If i open new nvim instance and then open the project, first time i run Laravel artisan nothing happens, all further calls work fine.

adalessa commented 9 months ago

this command maps to require("telescope").extensions.laravel.commands so I think the only problem could be that the extension is not fully loaded the first time in telescope. Are you using lazy ? I think it could help replace instead of calling the extension calling directly. require('laravel.telescope.pickers.commands')

dorkster100 commented 9 months ago

yes, I am, this did not help, I will try to debug a bit more later