auri
auri
@imcvampire You can make a file like that yourself, but you should use CMake. CMake versions 2.8 and above with ```cmake set(CMAKE_EXPORT_COMPILE_COMMANDS ON) ``` somewhere in CMakeLists.txt should do just...
I don't currently use the plugin myself, so it's pretty much unmaintained. If you'd like to implement this functionality yourself, https://github.com/aurieh/discord.nvim/blob/master/rplugin/python3/discord/__init__.py#L110 here's where you'd do it.
Likely a python3-neovim bug, I've seen it happen with other plugins. Will take a look regardless.
@w0rp `serve-d` logs to stderr, would it be possible to make `ale` only read messages off of `stdout`? Currently, it just throws several json parsing failures before giving up.
Yeah. I mean, I could redirect stderr to `/dev/null`, but that'd only work on unix-like systems, so no windows support. On the other hand, I might PR a `--disable-log` flag...
Wait wait wait, I think you misunderstood me. It writes messages to `stdout`, and log to `stderr`.
Oh then that's weird, because for some reason, when I last tried implementing a serve-d ale linter it logged some json parsing errors. I'll take a look, it's probably a...
Yeah, looks like ALE's trying to parse logger messages. Maybe it logs *some* messages to stdout 🤔
Limiting memory usage via `-m` flag, and CPU quota via `--cpu-quota` should help. Problem with that is, current version of docker, that is installed via Setup/Install_X.sh, doesn't support CPU quota...