@jmcb I have the same issue. It seems like a bug in jetbrains' terminal emulator (and its interpretation of xterm- escape codes)? It doesn't always happen consistently either.
A workaround that works for me is to tell less
(man
's default pager, which I assume you are also using), to not send the termcap initialization strings. This seems (on my system at least) to avoid the triggering whatever condition that causes man to produce an empty screen. i.e., instead of man du
, you can run LESS="$LESS --no-init" man du
.
You can have your shell automatically use this workaround by setting the environment variable on startup. You can check if you're running inside jetbrains' terminal with the TERMINAL_EMULATOR
env variable. e.g. in .bashrc
/.zshrc
:
if [[ "$TERMINAL_EMULATOR" = JetBrains-JediTerm ]]; then
export LESS="$LESS --no-init"
fi
Pinned Comments