Add theme for AMD/Xilinx Vivado tool
This commit is contained in:
parent
186dc04a86
commit
24340d71a6
1 changed files with 24 additions and 0 deletions
24
colout/colout_vivado.py
Normal file
24
colout/colout_vivado.py
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
|
||||
def theme(context):
|
||||
# Theme for coloring AMD/Xilinx Vivado IDE synthesis and implementation output
|
||||
return context,[
|
||||
[ "^#.+", "green" ],
|
||||
[ "^.+ Checksum: .+$", "green" ],
|
||||
|
||||
[ "^.+Time \(s\).+", "green" ],
|
||||
[ "^Time \(s\).+", "green" ],
|
||||
|
||||
[ "Estimated Timing Summary \|.+\|.+\|", "cyan", "bold" ],
|
||||
[ "Intermediate Timing Summary \|.+\|.+\|", "cyan", "bold" ],
|
||||
|
||||
[ "^INFO:", "white", "bold" ],
|
||||
[ "^WARNING:.+$", "yellow" ],
|
||||
[ "^CRITICAL WARNING:.+$", "red" ],
|
||||
[ "^ERROR:.+$", "red" ],
|
||||
|
||||
[ "^Phase [0-9]+.[0-9]+.[0-9]+.[0-9]+.+$", "magenta", "bold" ],
|
||||
[ "^Phase [0-9]+.[0-9]+.[0-9]+.+$", "magenta", "bold" ],
|
||||
[ "^Phase [0-9]+.[0-9]+.+$", "magenta", "bold" ],
|
||||
[ "^Phase [0-9]+.+$", "magenta", "bold" ]
|
||||
]
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue