diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2019-05-31 18:57:32 -0700 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2019-05-31 18:57:32 -0700 |
| commit | 18b98c8543748ae0f3aae1fa82e5f28ee3da11e2 (patch) | |
| tree | 95fd09f48062db9ae87ac1088702b822c11b2a2d /bb.c | |
| parent | 58d4c86389fce9a2fda0d22500e62ae078c51f3f (diff) | |
Made links dim (-> foo) instead of just the arrow
Diffstat (limited to 'bb.c')
| -rw-r--r-- | bb.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -503,9 +503,10 @@ void render(bb_t *bb) if (entry->linkname) { if (i != bb->cursor) fputs("\033[37m", tty_out); - fputs("\033[2m -> \033[22;3m", tty_out); + fputs("\033[2m -> \033[3m", tty_out); strcpy(color, color_of(entry->linkedmode)); if (i == bb->cursor) strcat(color, CURSOR_COLOR); + strcat(color, "\033[3;2m"); fputs(color, tty_out); if (entry->link_no_esc) fputs(entry->linkname, tty_out); else entry->link_no_esc |= !fputs_escaped(tty_out, entry->linkname, color); |
