feat(messages): hl-StderrMsg, hl-StdoutMsg #33429

Problem:
stderr messages from executing ":!cmd" show up with
highlight hl-ErrorMsg. But some shell utilites use stderr for debug
logging, progress updates, etc.

Solution:
Highlight shell command outputs hl-StderrMsg and hl-StdoutMsg.
This commit is contained in:
Sathya Pramodh
2025-05-02 18:36:55 +05:30
committed by GitHub
parent 3c7c824bdc
commit 0741d2520d
9 changed files with 22 additions and 12 deletions

View File

@@ -130,6 +130,8 @@ typedef enum {
HLF_BFOOTER, ///< Float Border Footer
HLF_TS, ///< status line for terminal window
HLF_TSNC, ///< status line for non-current terminal window
HLF_SE, ///< stderr messages (from shell)
HLF_SO, ///< stdout messages (from shell)
HLF_COUNT, ///< MUST be the last one
} hlf_T;