Changes between Initial Version and Version 1 of Ticket #4433
- Timestamp:
- 01/20/23 15:32:17 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4433
- Property Milestone changed from 4.8.29 to Future Releases
-
Ticket #4433 – Description
initial v1 1 1 in editdraw.c 2 2 3 {{{ 3 4 /* If non-printable - use black background */ 4 5 color = (style & MOD_ABNORMAL) != 0 ? 0 : p->style >> 16; 5 6 }}} 6 7 7 8 So, if, for example, file contains CR (^M) i see a lot of ^M on black background tearing apart all my nice colors and poking my eyes out. … … 11 12 12 13 skin.h 14 {{{ 13 15 #define EDITOR_ABNORMAL_COLOR mc_skin_color__cache[50] 14 16 #define MC_SKIN_COLOR_CACHE_COUNT 68 15 17 and renumbered cache array 16 18 }}} 17 19 colors.c 20 {{{ 18 21 EDITOR_ABNORMAL_COLOR = mc_skin_color_get ("editor", "editabnormal"); 19 22 }}} 20 23 editdraw.c 21 24 {{{ 22 25 else 23 26 //tty_setcolor (EDITOR_ABNORMAL_COLOR); 24 27 tty_lowlevel_setcolor (color); 25 28 }}} 26 29 But it does not work somehow. Compiles fine but just does not work. Abnormal chars just show as normal. 27 30