fix underscore, italics, hidden

This commit is contained in:
Dustin Kirkland 2011-08-16 16:19:40 -07:00
commit 3c0aa9966e
2 changed files with 4 additions and 1 deletions

1
debian/changelog vendored
View file

@ -62,6 +62,7 @@ byobu (4.30) unreleased; urgency=low
- fix wireless utf8 icon bug, default to utf8 for tmux - fix wireless utf8 icon bug, default to utf8 for tmux
* usr/lib/byobu/.shutil: * usr/lib/byobu/.shutil:
- fix tmux color rendering - fix tmux color rendering
- fix underscore, italics, hidden
* usr/lib/byobu/.dirs: * usr/lib/byobu/.dirs:
- ensure that the cache dir gets created - ensure that the cache dir gets created

View file

@ -67,11 +67,13 @@ color_map() {
attr_map() { attr_map() {
case "$1" in case "$1" in
d) _RET=,dim ;; d) _RET=,dim ;;
u) _RET=,underline ;; u) _RET=,underscore ;;
b) _RET=,bold ;; b) _RET=,bold ;;
r) _RET=,reverse ;; r) _RET=,reverse ;;
s) _RET=,standout ;; s) _RET=,standout ;;
B) _RET=,blinking ;; B) _RET=,blinking ;;
h) _RET=,hidden ;;
i) _RET=,italics ;;
*) _RET= ;; *) _RET= ;;
esac esac
} }