Created attachment 215828 [details] v1 Some ports support dim colors on terminal but base termcap(5) doesn't define "mh" for TERM=xterm. Let's port it from terminfo(5) along with some other attributes. - editors/emacs (-nw) - editors/ne - shells/fish - sysutils/smenu https://codesearch.debian.net/search?q=enter_dim_mode Test case: $ pkg install xterm $ xterm $ echo `tput mb`blink`tput me` `tput mh`dim`tput me` `tput mk`invis`tput me` $ pkg install tmux $ tmux $ tmux server-info | fgrep -e blink -e dim -e invis $ echo `tput mb`blink`tput me` `tput mh`dim`tput me` `tput mk`invis`tput me`
I'd like to *avoid* a new entry a la xterm-clear. Each of the new caps is trivial to disable e.g., $ export TERMCAP="${TERM}:mb@:mh@:mk@:tc=${TERM}:" $ echo `tput mb`blink`tput me` `tput mh`dim`tput me` `tput mk`invis`tput me`