Merge pull request #89 from jonathanpoelen/master

better perm theme
This commit is contained in:
Johann Dreo 2018-02-26 15:54:31 +01:00 committed by GitHub
commit eca25b4106
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
def theme(context):
p="([rwxs-])"
reg="^([d-])"+p*9+"\s.*$"
p="([-rwxsStT])"
reg="^([-dpcCDlMmpPs?])"+p*9+"\s.*$"
colors="blue"+",green"*3+",yellow"*3+",red"*3
styles="normal"+ ",normal,italic,bold"*3
return context,[ [reg, colors, styles] ]