Ticket #3845 (new defect) — at Version 1

Opened 7 years ago

Last modified 7 years ago

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

Change History

comment:1 Changed 7 years ago by andrew_b

  • Description modified (diff)
Note: See TracTickets for help on using tickets.