Add a theme for java
This commit is contained in:
parent
488c2a2f88
commit
3def9779a4
1 changed files with 15 additions and 0 deletions
15
colout/colout_java.py
Normal file
15
colout/colout_java.py
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
#encoding: utf-8
|
||||||
|
|
||||||
|
def theme():
|
||||||
|
style="monokai"
|
||||||
|
return [
|
||||||
|
[ "^(.*\.java):([0-9]+):\s*(warning:.*)$", "white,yellow,magenta", "normal,normal,bold" ],
|
||||||
|
[ "^(.*\.java):([0-9]+):(.*)$", "white,yellow,red", "normal,normal,bold" ],
|
||||||
|
[ "^(symbol|location)\s*:\s*(.*)$", "blue,Java", "bold,"+style ],
|
||||||
|
[ "^(found)\s*:\s*(.*)", "red,Java", "bold,"+style ],
|
||||||
|
[ "^(required)\s*:\s*(.*)", "green,Java", "bold,"+style ],
|
||||||
|
[ "^\s*\^$", "cyan", "bold" ],
|
||||||
|
[ "^\s+.*$", "Java", style ],
|
||||||
|
[ "[0-9]+ error[s]*", "red", "bold" ],
|
||||||
|
[ "[0-9]+ warning[s]*", "magenta", "bold" ],
|
||||||
|
]
|
||||||
Loading…
Add table
Add a link
Reference in a new issue