From 60d14339c2647b4b840ec6145b8638b26ab8c7fc Mon Sep 17 00:00:00 2001 From: moculus Date: Wed, 18 Mar 2009 01:12:46 +0000 Subject: [PATCH] --HG-- branch : pmacs2 --- application.py | 4 +++- buffer/about.py | 8 ++++---- mode/perl.py | 2 -- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/application.py b/application.py index 7450b58..1ce1b2f 100755 --- a/application.py +++ b/application.py @@ -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',) diff --git a/buffer/about.py b/buffer/about.py index 7f27c24..b4b5035 100644 --- a/buffer/about.py +++ b/buffer/about.py @@ -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:*]=============================================================================== ''' diff --git a/mode/perl.py b/mode/perl.py index 19f35dd..f5c6d53 100644 --- a/mode/perl.py +++ b/mode/perl.py @@ -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'),