for context, i am using Pckr to load the package, like this:
{
"leosmaia21/gcompilecommands.nvim",
ft = { "c", "cpp" }, -- lazy load plugin only on C and C++ filetypes
config = function()
require("gcompilecommands").setup{
tmp_file_path = os.getenv("USERPROFILE") .. "/tmp/compilecommandsNEOVIM.json"
}
end
},
and then i try to run the :GCompileCommands command in the root directory, inside a file, outside root directories etc, but i get the error, as stated, "Make failed, error 255".
I am unsure if this error is within the package, or if there is some rudimentary step that i have missed. any help is appreciated.
for context, i am using Pckr to load the package, like this:
and then i try to run the :GCompileCommands command in the root directory, inside a file, outside root directories etc, but i get the error, as stated, "Make failed, error 255". I am unsure if this error is within the package, or if there is some rudimentary step that i have missed. any help is appreciated.