emeditor的monokai配色

看到textmate上的monokai配色,觉得很漂亮,移植到emeditor上了。

因为最近基本只写python的代码,所以 只有python的。


emeditor的monokai配色
 
python.esy
写道
; EmEditor Syntax File
;
; To import this file to an existing configuration, select Configuration
; under the Tool menu, select Define Configurations, select a configuration
; you want to import to, press [Properties], select the Highlight page, and
; press [Import].
;
; Submit your customized file to [email protected]
; to be listed in www.emurasoft.com user files pages.
;
#Highlight=on
#BeginTag=
#EndTag=
#CommentBegin="""
#CommentEnd="""
#LineComment1=^#
#LineComment2=
#SingleQuote=on
#DoubleQuote=on
#ContinueQuote=off
#Escape=\
#ScriptBegin=
#ScriptEnd=
#SpecialSyntax=off
#HighlightBraces=on

#Keyword color=4,word=on,rightall=off,case=on,insidetag=off,regexp=off,rightall2=off
and
assert
break
continue
def
del
elif
else
except
exec
finally
for
from
global
if
import
in
is
lambda
not
or
pass
raise
return
try
while
as
with

#Keyword color=1,word=on,rightall=off,case=on,insidetag=off,regexp=off,rightall2=off
print
class
object
Exception
BaseException
StandardError
ArithmeticError
LookupError
EnvironmentError
AssertionError
AttributeError
EOFError
FloatingPointError
GeneratorExit
IOError
ImportError
IndexError
KeyError
KeyboardInterrupt
MemoryError
NameError
NotImplementedError
OSError
OverflowError
ReferenceError
RuntimeError
StopIteration
SyntaxError
SystemError
SystemExit
TypeError
UnboundLocalError
UnicodeError
UnicodeEncodeError
UnicodeDecodeError
UnicodeTranslateError
ValueError
VMSError
WindowsError
ZeroDivisionError
Warning
UserWarning
DeprecationWarning
PendingDeprecationWarning
SyntaxWarning
RuntimeWarning
FutureWarning
ImportWarning
UnicodeWarning
xrange
range
iter
sorted
__init__

#Keyword color=1,word=on,rightall=off,case=on,insidetag=off,regexp=on,rightall2=off
(?<!\.)list
(?<!\.)tuple
(?<!\.)dict
(?<!\.)set
(?<!\.)len
(?<!\.)all
(?<!\.)any
__(abs|add|and|class|cmp|coerce|delattr|div|divmod|doc)__
__(float|floordiv|format|getattribute|getnewargs|hash|hex|index)__
__(init|int|invert|long|lshift|mod|mul|neg|new|nonzero|oct|or|pos|pow)__
__(radd|rand|rdiv|rdivmod|reduce|reduceex|repr|rfloordiv|rlshift|rmod)__
__(rmul|ror|rpow|rrshift|rshift|rsub|rtruediv)__
__(rxor|setattr|sizeof|str|sub|subcl)__

#Keyword color=3,word=on,rightall=off,case=on,insidetag=off,regexp=off,rightall2=off
True
False
None

#Keyword color=2,word=on,rightall=off,case=on,insidetag=off,regexp=on,rightall2=off
\+|\=|\-|\*|\/|\!|\||\&|\^^|\@

#Keyword color=3,word=on,rightall=off,case=off,insidetag=off,regexp=on,rightall2=off
[\-\+]?(\d+|\d+\.\d*|\.\d+)

#Keyword color=7,word=on,rightall=off,case=on,insidetag=off,regexp=on,rightall2=off
(?<=def )\w*([A-Za-z0-9]_|_[A-Za-z0-9]|[A-Za-z0-9])(?=\(| \()
 monokai.eetheme
写道

[Monokai]
MaxFind=1
Normal=#f8f8f2,#272822,normal
Sel=transparent,#49483e,normal
CurrentLine=transparent,#3e3d32,normal
Quoted=#c0c0ff,transparent,normal
Find=transparent,#40ff40,normal
URL=#008080,transparent,underline
Mail=#008000,transparent,underline
Tag=#808000,transparent,underline
SingleQuotes=#e6db74,transparent,normal
DoubleQuotes=#e6db74,transparent,normal
Comment=#75715e,transparent,normal
Script=#a6e22e,transparent,normal
Braces=#ffff00,transparent,bold
InTag=#a6e22e,transparent,normal
Highlight1=#66d9ef,transparent,normal
Highlight2=#fd971f,transparent,normal
Highlight3=#ae81ff,transparent,normal
Highlight4=#f92672,transparent,normal
Highlight5=#f8f8ff,#f92672,normal
Highlight6=#f8f8ff,#ae81ff,normal
Highlight7=#a6e22e,transparent,normal
Highlight8=#fd971f,transparent,normal
Highlight9=transparent,#00ffff,normal
Highlight10=transparent,#40ff40,normal
Return=#c0c0ff,transparent,normal
Line=#c0c0c0,#e1e1e1,normal
PageBreak=transparent,#c0c0c0,normal
LineNumber=#7a4ba2,#c0c0ff,normal
Ruler=#7a4ba2,#c0c0ff,normal
Outside=transparent,transparent,normal
 

你可能感兴趣的:(python)