xeluxee/competitest.nvim

Commands Are Not Found!!!

SHAHNUR00 opened this issue · 6 comments

Add, Edit, Delete Command are not showing when I install them with vim-plug!!!!!!!!!!

Please be more exhaustive, what kind of error are you getting? Did you run :PlugInstall? Did you call CompetiTest setup in your config?

And please use a meaningful title when opening an issue.

So I installed competitest.nvim using plug. I ran : PlugInstall and it installed all the necessary files without any error. But when I searched for the commands( :CompetiTestAdd, :CompetiEdit, :CompetiDelete ) then no preview or option was shown unfortunately at the bottom of the Neovim.

Neovim Showing:

Screenshot (2)

Did you call CompetiTest setup in your config?

Actually I use vimscript. The setup function is for Lua. Unfortunately I never use lua. If you could help further, I'll be glad.

Actually I use vimscript. The setup function is for Lua.

To configure Neovim you can use vimscript and lua at the same time. To use lua inside vimscript you can use lua heredoc block (see :h lua-guide-using-Lua):

lua << EOF
  require('competitest').setup()
EOF

If you're using newer Neovim plugins I suggest you to switch to lua config, since many of them are configured through a lua setup function.

Thank You.