I recommend J-Edit.  It's a java based editor, runs on multiple platforms,
it's GNU. Does syntax highlighting, has support for plugins.


http://jedit.sourceforge.net

James

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 11:46 AM
To: Perl-Win32-Users Mailing List
Cc: Perl-Win32-Users Mailing List
Subject: Re: A good editor - ntemacs





>> anyone know how to change the colors in ntemacs syntax highlighting?  the
>> default colors aren't very legible.

Put the following Lisp in your startup file (c:\_emacs unless you've made
one
elsewhere).
Close emacs and start it up again.
This gives colours more like the PC norms (eg comments in dark green on gray
etc.)

Otherwise you can use the Customise - Specific Face option on the Help menu
to
let you redefine each face (with preview etc.) and save the new colours for
later use ... the faces you'll want to change are all the "font-lock-..."
faces
(ie colour syntax highlighting). When it asks for a face to change, type
"font-lock" (without the quotes) and press Tab to get a list of faces ....

Stick with it, it seems hard at first, but then powerful tools usually do...

Cheers

Tim

;; Turn on font-lock stuff for colour syntax highlighting
;; Set up some colours ...
;;
(cond ((fboundp 'global-font-lock-mode)
       ;; Customize the face attributes
       (setq font-lock-face-attributes
          ;; Symbol-for-Face Foreground Background Bold Italic Underline
          '((font-lock-comment-face       "DarkGreen" "gray95")
             (font-lock-constant-face      "Red" "white" 1)
            (font-lock-function-name-face "Blue")
            (font-lock-keyword-face       "Navy" "white" 1)
            (font-lock-reference-face     "Purple")
            (font-lock-string-face        "Red")
            (font-lock-type-face          "Black")
            (font-lock-variable-name-face "Black" "white" 1)
            ))
       ;; Load the font-lock package.
       (require 'font-lock)
       ;; Maximum colors
       (setq font-lock-maximum-decoration t)
       ;; Turn on font-lock in all modes that support it
       (global-font-lock-mode t)))








_________________________________________________________________________
                                                                      
The information contained in this message is intended for the addressee
only and may contain confidential and/or privileged information.
If you are not the addressee, please delete this message and notify the
sender; you should not copy or distribute this message or disclose its
contents to anyone.
Any views or opinions expressed in this message are those of the author
and do not necessarily represent those of WestLB or any of its affiliates.
No reliance may be placed on this message without written confirmation
from an authorised representative of its contents.

---
You are currently subscribed to perl-win32-users as:
[EMAIL PROTECTED]
To unsubscribe, forward this message to
         [EMAIL PROTECTED]
For non-automated Mailing List support, send email to  
         [EMAIL PROTECTED]

---
You are currently subscribed to perl-win32-users as: [archive@jab.org]
To unsubscribe, forward this message to
         [EMAIL PROTECTED]
For non-automated Mailing List support, send email to  
         [EMAIL PROTECTED]

Reply via email to