Ticket #3845 (new defect) — at Version 1
replace brightblue in syntax files
Reported by: | Nicolas Rybkin | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | Future Releases |
Component: | mcedit | Version: | master |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Branch state: | no branch | Votes for changeset: |
Description (last modified by andrew_b) (diff)
I can't see text printed in bright blue in tty (Slackware Linux, using default skin), I suggest to replace it in syntax files with bright cyan, it can be done with such script ran in syntax folder (skips filehighlight.syntax and syntax.syntax):
#! /bin/tcsh set a = `basename $0` foreach b (*) if ($b != $a && $b != "filehighlight.syntax" && $b != "syntax.syntax") then sed -i s/brightblue/brightcyan/ $b endif end
Note: See
TracTickets for help on using
tickets.