From Fedora Project Wiki

< Features

Revision as of 11:49, 18 July 2012 by Shaiton (talk | contribs) (→‎Dependencies: adding the packages that would have update)

256 Color Terminals

Summary

Enable terminal programs to use the enhanced color capabilities of modern terminals by default.

I.E. increase their color options from the 8 colors at the top of this picture, to the other 256 displayed.

16 to 256.png

Owner

Current status

  • Targeted release: Fedora 18
  • Last updated: 2012-06-16
  • Percentage of completion: 50%

Detailed Description

Many terminal programs (like vim and ls for example) can take advantage of 256 color terminals, and all xterms I know of support at least 256 colors and sometimes more.
So let's break through the artificial 8 color limit!

Also when preparing this page, while searching the net I noticed that Mac OS X Terminal's default $TERM value is xterm-256color since Lion 10.7 That will ease some of the compatibility issues noted below.

You can see vim's default appearance using the above expanded palette at:

http://www.pixelbeat.org/docs/terminal_colours/#256

Benefit to Fedora

By having 32 times more colors available gives much better scope for using more appropriate default colors. For example, users could set their terminal backgrounds to dark or light and have ls use colors that are appropriate to either.

Also more subtle and considered coloring can be used as discussed and depicted at: https://github.com/seebi/dircolors-solarized

Scope

This will be mainly configuration changes. After some discussion it was thought best to update each terminal to adjust the TERM environment variable, to indicate that 256 colors are supported.

Here are setting notes on setting $TERM on various terminals: Noted there was the fact that it's not configurable in gnome-terminal (vte) yet.

There is a related bug to set $TERM to 'gnome' 'gnome-256color', though we probably should stick to 'xterm' to reduce remote interop issues (ubuntu precise for example doesn't support TERM=gnome)

Here are notes on the xfce bug where it doesn't set the specified TERM correctly: http://forums.opensuse.org/english/get-technical-help-here/how-faq-forums/unreviewed-how-faq/459826-setting-term-xfce-terminal-bug-description-workaround.html https://bugs.archlinux.org/task/21007#comment94595

For quick testing and development you can also use this /etc/profile.d/256color.sh file. That keeps the config central, and set things up in a standard way such that LS_COLORS will be set appropriately.

Here is my current version:

local_term() {
  who -m | grep -q " pts/.*(:"

  # Note this will not handle the unusual case
  # where we ssh to localhost from an xterm
}

if local_term; then
  [ "$TERM" = 'xterm' ] && TERM=xterm-256color
  [ "$TERM" = 'screen' ] && TERM=screen-256color
  [ "$TERM" = 'rxvt-unicode' ] && TERM=rxvt-unicode-256color
  export TERM

  if [ ! -z "$TERMCAP" ] && [ "$TERM" = "screen-256color" ]; then
    TERMCAP=$(echo $TERMCAP | sed -e 's/Co#8/Co#256/g')
    export TERMCAP
  fi
fi

As an optional additional improvement, we could adjust the 256 color values used in ls by editing the /etc/DIR_COLORS.256color file in the coreutils package, as it doesn't take as much advantage of the color range as it could.

As the default vim color scheme has some issues in 256 colors, we should also provide updates on this. Search, SpellLocal, ColorColumn and MatchParen are hardly readable (see :hi under vim). We should also avoid uses of bold attribute in vim highlighting as it can look bad especially at smaller font sizes. There are only a couple of uses of bold in the 256 color scheme so they can be easily avoided. Bold should be left in the vim 8 color scheme due to the effective doubling of colors that provides.

How To Test

Test as many colored terminal apps as possible under as many terminals as possible. Ensure screen works as expected too. There are screen testing notes at: http://www.robmeerman.co.uk/unix/256colours

To get the color numbers of your actual TERM, use the following:

$ tput colors
256

For testing any ls color changes you can use this command:

eval $(dircolors /etc/DIR_COLORS.256color)
echo $LS_COLORS | tr : '\n' | sed 's/\(.*\)=\(.*\)/\x1b[\2m\1\t\2\x1b[0m/'

User Experience

Better default colors with less tweaking required.

Dependencies / Affected packages

The following packages should be updated in order to enable or improve the 256 colors usage:

  • coreutils (for the ls color schem)
  • vim-common (to improve the vim color schem)
  • gnome-terminal
  • xterm
  • konsole
  • terminal
  • tmux?
  • screen?
  • [other terms to handle]

Contingency Plan

None necessary, revert to previous release behaviour

Documentation

Caveats

  • The linux terminal (i.e. those on virtual consoles) doesn't support 256 colors and will break if applications send 256 color codes to it. This is handled in the config file above.
  • Local xterms support this feature fine, though once you connect to other systems with SSH (which propagates the TERM environment variable), they will have to support the $TERM, or otherwise you will have a degraded experience. Debian for example traditionally didn't support xterm-256color unless the ncurses-term package was installed. Note ubuntu 12.04 at least does support xterm-256color so this is improving. Also as noted above Mac OS X 10.7 defaults to xterm-256color and so they're paving the way somewhat in this regard, so there should be less issues in connecting to older systems going forward.

Release Notes

Probably worth mentioning the case where users may need to reset their TERM to 'xterm' etc. when sshing to older systems. This issue is well known and similar to where you need to reset TERM on some systems when using the rxvt-unicode terminal for example. Something simple like this should suffice:

If you receive "unknown" or "not fully functional" terminal status messages when using remote systems over ssh,
when you didn't before, then reset the TERM environment variable to 'xterm' for the remote system.

Comments and Discussion