xeluxee / competitest.nvim

CompetiTest.nvim is a Neovim plugin for Competitive Programming: it can manage and check testcases, download problems and contests from online judges and much more
GNU Lesser General Public License v3.0
389 stars 16 forks source link

feat: Create testcases_directory if it doesn't exist #3

Closed shadmansaleh closed 2 years ago

shadmansaleh commented 2 years ago

Currently if testcases_directory doesn't already exists competitest fails to save tests . This directory should be created if it doesn't exist . I think compile_directory & run_directory also faces similar issue though I haven't tried .

shadmansaleh commented 2 years ago

On a side note since writting vimdoc is in your future planes . You could convert README.md to vimdoc with panvimdoc . You can just through in a CI for the conversion like we do in lualine

xeluxee commented 2 years ago

Currently if testcases_directory doesn't already exists competitest fails to save tests . This directory should be created if it doesn't exist . I think compile_directory & run_directory also faces similar issue though I haven't tried .

You're right, I'll fix it

xeluxee commented 2 years ago

On a side note since writting vimdoc is in your future planes . You could convert README.md to vimdoc with panvimdoc . You can just through in a CI for the conversion like we do in lualine

Thanks, I'll give a look

xeluxee commented 2 years ago

Fixed with 491b7cc

shadmansaleh commented 2 years ago

Thanks . It works now :)