Dear NTEmacs users, ;; Tell emacs where central backup directory is, and turn it on (setq backup-directory "~/backups") (require 'backups) (move-backups t) I...
Annamalai G
gannam@...
Apr 2, 2000 11:24 am
11321
Lately, I've had a problem with a little elisp-program I'm writing. I wanted to read the NT4 registry from emacs using only standard NT4 tools. Finally I found...
Mathias Dahl
zeamalot@...
Apr 2, 2000 12:21 pm
11322
... Thats quite an interesting idea, there are other ways of doing this, but your requirment of standard tools only spoils that. ... You do realise that this...
Steve Kemp
skx@...
Apr 2, 2000 3:35 pm
11323
... Dear Anna, Make sure that backups.el is in your load path, e.g. (setq load-path (cons "~/lisp" load-path)) And ;; backups.el -- Centralize backups in one...
Jeff Rancier
jeff.rancier@...
Apr 2, 2000 4:59 pm
11324
... I solved the problem by changing appropriately the regex in gnus-group-real-name (gnus-util.el): (defmacro gnus-group-real-name (group) "Find the real name...
Janusz S. Bien
jsbien@...
Apr 2, 2000 7:50 pm
11325
(Apologies if you've seen this before --- accidental prior posting to another list.) I'm trying to play around with com, not from the 'add-in' for vb toolies'...
Frank R. Brown
list.Frank@...
Apr 11, 2000 3:03 am
11326
How would I get the filename I'm editing in the title bar of the emacs window? I generally have a few different instances of emacs running and I'd like to see...
Scott Goldstein
sdgoldst@...
Apr 11, 2000 6:35 am
11327
Put the following in your .emacs file: (setq frame-title-format "%f") Arvin ... Fra: Scott Goldstein <sdgoldst@...> Til:...
Arvin Patel
a.patel@...
Apr 11, 2000 8:45 am
11328
... I have the following in my .emacs (from this list some time ago, I think): ;; format title bar to show full path of current file (setq-default...
ekkehard.goerlach@...
Apr 11, 2000 10:42 am
11329
... I gave this problem a more general solution than the others that have been posted in this thread, since I've wanted this kind of functionality (different...
Will Mengarini
seldon@...
Apr 11, 2000 12:05 pm
11330
scott -- an alternative to the filename is the buffer name. it's advantage is that it works for buffers (e.g., *Help*) which have no associated filename. %b...
Chuck Siska
chuck.siska@...
Apr 11, 2000 5:47 pm
11331
chris -- ;; set easy-eye back color (set-background-color "cyan") or "lightgrey", etc. -- chuck siska ... -- I wake up each morning to resume battle with...
Chuck Siska
chuck.siska@...
Apr 11, 2000 5:47 pm
11332
Sorry if this is a bit late. I've been out of the office. I have this exact functionality. No warranty expressed nor implied, caveat emptor, etc etc etc: ;;...
Charlie Reiman
creiman@...
Apr 11, 2000 5:48 pm
11333
I noticed you said you have "few different instances of emacs running". This is inefficient in space and sometimes in execution time since emacs eats memory....
Richard M. Heiberger
rmh@...
Apr 11, 2000 6:05 pm
11334
See the following: frame-title-format's value is (multiple-frames "%b" ("" invocation-name "@" system-name ": %f")) Documentation: Template for displaying the...
Jeff Rancier
jeff.rancier@...
Apr 11, 2000 6:12 pm
11335
... There probably will be. Which future release is another question. Is there anything in particular that the native IME gives you that leim doesn't? If the...
Jason Rumney
jasonr@...
Apr 11, 2000 6:36 pm
11336
Keep in mind that when I minimize this I see only "invocation-nane "@" system-name", not the "%f" for the filename. Jeff...
Jeff Rancier
jeff.rancier@...
Apr 11, 2000 7:12 pm
11337
I'm a big fan of Paul Kinnucan's "Java Development Environment for Emacs" (JDE). However, I may be moving to a new project doing mostly Perl (for now, anyway)....
Tom Roche
tom_roche@...
Apr 11, 2000 9:31 pm
11338
For the past three years I've been working in an NT/NetWare environment. I may be moving to a new project in which I'd be working approx half-NT, half-Solaris...
Tom Roche
tom_roche@...
Apr 11, 2000 9:40 pm
11339
... I abandoned this some time ago, not on purpose, but it just fell by the wayside. Here's what I did: .emacs: ; Multi-platform Emacs ;...
C. R. Oldham
cro@...
Apr 11, 2000 10:33 pm
11340
Hello, I am trying to do some font-lock coding, and I thought the list would be a good place to start. I am trying to fontify the following: one face ... vvv ...
Kevin Blake
kblake@...
Apr 12, 2000 12:51 am
11341
All, I've just started using perldb within NTemacs. When I start debugging a program, the arrow pointing to the current statement appears as "=>" and ...
Mike Krell
mkrell@...
Apr 12, 2000 1:29 am
11342
Charles Curley has a .emacs at the following site; http://w3.trib.com/~ccurley/emacs.init.html#TOC45 I haven't used it, was just perusing it, but I bookmarked...
Boyer,Galen
gboyer@...
Apr 12, 2000 1:45 am
11343
... I do this in my ~/.emacs file: (if (eq system-type 'windows-nt) ;; init for NT (progn ;;; do all your NT stuff here ) ) Also, for many years now, I have...
Sarir Khamsi
khamsi@...
Apr 12, 2000 2:03 am
11344
On Windows 95 using ntemacs 20.6.1 and ActiveState's perl 5.6.0.613 in a shell window of emacs (using the supplied cmdproxy.exe), executing a perl script and...
David M. Larue
dlarue-l@...
Apr 12, 2000 2:38 am
11345
Hello All!! How can I change the status bar colors? I would like to have a different fore-ground and back-ground colors for the status bar (w.r.t buffer).. ...
Annamalai G
gannam@...
Apr 12, 2000 3:01 am
11346
Here a sniped from my .emacs: (if window-system (progn (set-face-background 'modeline "blue") (set-face-foreground 'modeline "yellow") )) ... -- Michael...
Michael Luetzeler
Michael.Luetzeler@...
Apr 12, 2000 3:04 am
11347
... Right, you need to use "icon-title-format" for that. Code for this was recently posted by someone who I'd like to thank but I've unfortunately deleted his...
Robinows@...
Apr 12, 2000 3:27 am
11348
Hi, Although I'm still using Perl 5.005_03 build 522, I just tried David's script but can't reproduce the behaviour he reports. I tried it both with cmdproxy...
Sprenger, Karel
Karel.Sprenger@...
Apr 12, 2000 3:49 am
11349
here is part of my .emacs ( by the way, I see no need whatsoever to use _emacs as the file name. You don't WANT to manipulate it in explorer) Most stuff in...