parent
5eff1a2875
commit
60d14339c2
|
@ -35,6 +35,7 @@ class Application(object):
|
|||
'comment.null': ('red', 'default', 'bold'),
|
||||
'comment.end': ('red', 'default', 'bold'),
|
||||
'continuation': ('red', 'default', 'bold'),
|
||||
'escaped': ('magenta', 'default', 'bold'),
|
||||
'string.start': ('green', 'default', 'bold'),
|
||||
'string.data': ('green', 'default', 'bold'),
|
||||
'string.null': ('green', 'default', 'bold'),
|
||||
|
@ -53,7 +54,8 @@ class Application(object):
|
|||
'builtin': ('magenta', 'default', 'bold'),
|
||||
'method': ('cyan', 'default', 'bold'),
|
||||
'bareword': ('default', 'default', 'bold'),
|
||||
'delimiter': ('default', 'default', 'bold'),
|
||||
'delimiter': ('default', 'default'),
|
||||
'operator': ('default', 'default'),
|
||||
}
|
||||
self.default_color = ('default', 'default',)
|
||||
|
||||
|
|
|
@ -12,11 +12,11 @@ _data = '''
|
|||
[y:d:*] ************ ***** ***** **** ************* ********** **********
|
||||
[y:d:*] ********** ***** ***** **** ****** **** ******** ********
|
||||
[y:d:*] ***
|
||||
[y:d:*] *** [c:d:*]pmacs[d:d:*] is a python-based text editor by [c:d:*]Erik Osheim[d:d:*], [b:d:*](c) 2005-2009
|
||||
[y:d:*] *** [c:d:*]pmacs[d:d:*] is available to you under the [c:d:*]GNU General Public License v2
|
||||
[y:d:*] *** [c:d:*]pmacs[d:d] is a python-based text editor by [c:d:*]Erik Osheim[d:d], [b:d:*](c) 2005-2009
|
||||
[y:d:*] *** [c:d:*]pmacs[d:d] is available to you under the [c:d:*]GNU General Public License v2
|
||||
[y:d:*]*****
|
||||
[y:d:*]***** [d:d:*]to view available commands use [c:d:*]C-c M-h [b:d:*](show-bindings-buffer)
|
||||
[y:d:*]***** [d:d:*]open files with [c:d:*]C-x C-f[d:d:*]; save with [c:d:*]C-x C-s[d:d:*]; quit with [c:d:*]C-x C-c
|
||||
[y:d:*]***** [d:d]to view available commands use [c:d:*]C-c M-h [b:d:*](show-bindings-buffer)
|
||||
[y:d:*]***** [d:d]open files with [c:d:*]C-x C-f[d:d]; save with [c:d:*]C-x C-s[d:d]; quit with [c:d:*]C-x C-c
|
||||
|
||||
[r:d:*]===============================================================================
|
||||
'''
|
||||
|
|
|
@ -647,11 +647,9 @@ class Perl(mode.Fundamental):
|
|||
'pod.end': ('red', 'default', 'bold'),
|
||||
|
||||
# basic stuff
|
||||
'escaped': ('magenta', 'default', 'bold'),
|
||||
'null': ('default', 'default', 'bold'),
|
||||
'sub': ('cyan', 'default', 'bold'),
|
||||
'prototype': ('yellow', 'default', 'bold'),
|
||||
'operator': ('default', 'default', 'bold'),
|
||||
'noperator': ('magenta', 'default', 'bold'),
|
||||
'endblock': ('red', 'default', 'bold'),
|
||||
'perl_keyword': ('magenta', 'default', 'bold'),
|
||||
|
|
Loading…
Reference in New Issue