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
539 stars 38 forks source link

Seems stderr wont show in the floating window? #50

Closed NEX-S closed 2 years ago

NEX-S commented 2 years ago

This code will cause segmentation fault but wont appear in code_runner's floating window.

int main (int argc, char * argv[])
{
"Hello"[0] = 'X';
return 0;
}
NEX-S commented 2 years ago

I guess is code_runner wont show any stderr message in result?

NEX-S commented 2 years ago

Fish cause this :(