Hello GNUEmacs users, Could U please tell me how to change the default keyword colors? I am using gray0 as my background color and the default font colors are ...
Gurusami Annamalai
gannam@...
Jun 1, 1999 10:55 am
7339
... Michael> .. in dos? I´m search the two Unix-Programms for dos! I Michael> have the fortune.el from Holger Schauer and this program Michael> search...
Dr. Volker Zell
vzell@...
Jun 1, 1999 11:29 am
7340
/* * JAIL (Just Another Intervening Layer) * * Luckyly for me I had to install a C compiler on my machine (I * needed some C coding...) and since last releases...
Gian Uberto Lauri
lauri@...
Jun 1, 1999 1:08 pm
7341
You need to use set-face-foreground and set-face-background, and the colors available are listed in the etc directory of the NTEmacs tree, in the rgb.txt...
Gian Uberto Lauri
lauri@...
Jun 1, 1999 1:29 pm
7342
Dear GNUEmacs user, Your setting (set-face-foreground 'font-lock-keyword-face "red") is working fine.. But it is only partly working.. keywords like "public"...
Gurusami Annamalai
gannam@...
Jun 1, 1999 2:26 pm
7343
... GA> (set-face-foreground 'font-lock-keyword-face "red") GA> is working fine.. GA> But it is only partly working.. keywords like "public" in java is not GA>...
Gian Uberto Lauri
lauri@...
Jun 1, 1999 3:13 pm
7344
... 20.3.9.1 supports BDF fonts directly, although they are somewhat slower than native Windows fonts, and possibly prone to bugs having not been tested...
Jason Rumney
jasonr@...
Jun 1, 1999 6:45 pm
7345
... [...] Thanks for your reply. Someone else pointed out that there is already a FAQ entry for this one - ...
Nick Sieger
Nick@...
Jun 1, 1999 7:07 pm
7346
I like Global font lock (highlights syntax). I check the box under Help | Options menu. It unchecks when I leave emacs. Is there a line I can put in my .emacs...
sonofriodmreg@...
Jun 1, 1999 8:47 pm
7347
Hi, Sonofrio. ... Of course there is. :) Just stick this in your .emacs: (setq font-lock-maximum-decoration t) ;; Maximum colors (global-font-lock-mode t)...
Daniel, Elijah
Elijah.Daniel@...
Jun 2, 1999 12:30 am
7348
... thing. ... There is also a quick reference in a ps file under %emacs%/etc/refcard.ps Hope this helps Norbert...
Allaban : Norbert Cau...
ncauderan@...
Jun 2, 1999 9:05 am
7349
Dear GNUEmacs users, As I keep on typing what happens is, after reaching the right margin a '\' character appears and the remaining line continues in the next...
Gurusami Annamalai
gannam@...
Jun 2, 1999 1:02 pm
7350
... It was included in the 20.3 distribution, and I assume will be included in future distributions. Francis...
Dr Francis J. Wright
F.J.Wright@...
Jun 2, 1999 1:14 pm
7351
... '\' ... You need to set truncate-lines add (setq-default truncate-lines t) to your .emacs file ... *Non-nil means do not display continuation lines; give...
andy.ling@...
Jun 2, 1999 2:52 pm
7352
... anna; This is simply how Emacs displays lines longer than will fit in the current window... it lets you see all the text without forcing you to scroll...
David J. Biesack
sasdjb@...
Jun 2, 1999 2:54 pm
7353
Hello Gurusami, GA> Dear GNUEmacs users, GA> As I keep on typing what happens is, after reaching the right margin a '\' GA> character appears and the remaining...
Roman Belenov
roman@...
Jun 2, 1999 3:01 pm
7354
... I use the following code in my .emacs file to let lines continue to the right and support automatic horizontal scrolling to follow the text cursor: ...
Craig Dickson
crd@...
Jun 2, 1999 3:02 pm
7355
Any information related to how to change the emacs standard menu would be much appreciated. I would like to remove items that I do not use, and that...
Dr Eli Napchan
e.napchan@...
Jun 2, 1999 3:37 pm
7356
... There is -- see the variable `buffer-display-table'. Francis...
Dr Francis J. Wright
F.J.Wright@...
Jun 2, 1999 4:12 pm
7357
I have a couple of macros I recorded to provide this very behavior. I'm sure that functions will work nicely, but this was quick. ;;; turn text wrapping off ...
Chris McMahan
chris.mcmahan@...
Jun 2, 1999 4:14 pm
7358
I have the following function bound to a key (M-insert in my case). It toggles the display between showing the full line with a \ as the continuation and a...
Mike West
mikewest@...
Jun 2, 1999 4:29 pm
7359
... No. I use color to represent bold. All faces should use the same font. ... Yes, the problem turns out to be that info-node gets the font "-*-Courier...
Christopher J. Madsen
ChrisM@...
Jun 2, 1999 4:32 pm
7360
I got all of this setup. Thanks. Is cperl-mode.el separate from the colorizations? Is there a place where you can go to get a selection of different...
sonofriodmreg@...
Jun 2, 1999 4:36 pm
7361
Try m-x hscroll-global-mode David F.Gallucci Senior Technical Specialist The NASDAQ Stock Market, Inc. Systems Engineering 80 Merritt Blvd Trumbull,CT 06611 ...
Gallucci, David
GalluccD@...
Jun 2, 1999 5:26 pm
7362
... Thanks for the tip -- I've now managed to make my continuation/truncation markers less annoying by mapping them to more appropriate characters. In my ...
Craig Dickson
crd@...
Jun 2, 1999 5:54 pm
7363
How do I replace one string with another string that contains a newline? I've tried all combinations of: replace-string ^M with \012 replace-regexp ^M with \n ...
Lmjennings@...
Jun 2, 1999 5:56 pm
7364
Charles Martin - Sun PS
crmartin@...
Jun 2, 1999 6:32 pm
7365
l. m. -- use control-j for your newline character. you can insert a control-j into the replacement string by typing two characters in sequence. first type...
Chuck Siska
chuck.siska@...
Jun 2, 1999 6:50 pm
7366
... To put something into a input string that normally wouldn't be there, "quote" it by preceding it with the character control-q. So, for example, to replace...
Larry Smith
lsmith@...
Jun 2, 1999 7:23 pm
7367
... I've ... text. Try entering ^Q^J (control-Q, control-J) in your replacement string. The ^Q quotes whatever character follows it, so Emacs will understand...