java-mode
and jde-mode.
abstract, const, final,
synchronized, transient, static,
volatile, public, private, protected,
native) are displayed with the font-lock-builtin-face
face.
extra-java-font-lock-number-face
face you can customize.
font-lock-constant-face
face.
~/.emacs startup file:
(cond ((fboundp 'global-font-lock-mode)
(require 'extra-java-font-lock)
(setq font-lock-maximum-decoration t)
(global-font-lock-mode t)
))
New! Starting with JDE 2.2.5,
extra-java-font-lock is now part of the JDE as jde-java-font-lock :-)C-f6/C-S-f6
(a la Windows) to respectively switch to next/previous buffer. You can customize
some options (see the source code for details). Try it!~/.emacs startup file:(require 'recentf)
(recentf-mode 1)
This version now works on XEmacs 21 too :-)
csdiff-files - to compare 2 files.csdiff-folders - to compare 2
folders.csdiff-revision
- to compare 2 revisions of a file under version control.csdiff-latest-revision - to compare
working copy and latest revision of a file under version control.(require 'csdiff-setup)igrep-find
to use the native Windows NT command findstr to find expressions
in multiple files. findstr.el can be useful to have `igrep-find' works in
NT Emacs without installing any ports of the unix grep and find commands.(require 'findstr)| Copyright © 1998-2002 David Ponce | Last updated on 2002-01-09 |