mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-21 22:13:19 -07:00
fix underscore, italics, hidden
This commit is contained in:
parent
d05cd746f4
commit
3c0aa9966e
2 changed files with 4 additions and 1 deletions
1
debian/changelog
vendored
1
debian/changelog
vendored
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue