Core files are frequently compressed in some compressed archive and users aren't aware that LLDB can't
extract the core file for them. Because of this there is usually one question every day on why
LLDB is giving them a cryptic error message when they open their compressed core file:
error: Unable to find process plug-in for core file '/tmp/core.gz
This just adds a note that compressed core files need to be decompressed first before LLDB can do anything
with them.
For consistency with warning and error, Note should be lowercase.
[begin potential yak shaving]
It would be nice to extend CommandReturnObject with the notion of notes. That way they could be colored in the same way that error and warning are. LLVM's WithColor already has a dedicated note color.
[end potential yak shaving]