CRAG666 / code_runner.nvim

Neovim plugin.The best code runner you could have, it is like the one in vscode but with super powers, it manages projects like in intellij but without being slow
MIT License
534 stars 38 forks source link

Mode for specific project is broken after recent update #88

Closed saccarosium closed 1 year ago

saccarosium commented 1 year ago

I've update to the latest commit and my configuration for project specific mode is broken.

require('code_runner').setup({
    startinsert = true,
    filetype = {
        c = "gcc --std=c11 -g -Wall $file && $dir/a.out",
        cpp = "g++ --std=c++14 -g -Wall $file && $dir/a.out",
        ruby = "ruby $file",
        python = "python3 $fileName",
    },
    project = {
        ["~/Repos/github.com/saccarosium/pel_json_parser"] = {
            name = "json parser",
            command = "make && ./build/json",
            mode = "tab"
        },
    }
})
CRAG666 commented 1 year ago

my error, I did not expand the paths of the projects in the following commit I correct it

CRAG666 commented 1 year ago

Could you please try again, thank you very much

saccarosium commented 1 year ago

All function currectly now.