I found a small bug in hilight. While defining a buffer list hilight scheme, I accidentally typed "[[:almum:]]" instead of "[[:alnum:]]". ; the evil line ...
Schofield, Bryan (GE ...
Bryan.Schofield@...
Jun 1, 2005 4:53 pm
1420
Hi, is there a "inexpensive" way to do such a thing: Suppose I have a text consisting of lines each starting with the word FNORD . Now I want to replace a...
Meino Christian Cramer
Meino.Cramer@...
Jun 1, 2005 5:51 pm
1421
From: Thomas Hundt <thundt@...> Subject: Re: [jasspa] "graphical" string-rectangle ? Date: Tue, 31 May 2005 13:54:04 -0700 Hi Thomas, Thank you for your...
Meino Christian Cramer
Meino.Cramer@...
Jun 1, 2005 5:56 pm
1422
Replace just a couple? You need query-replace-string. It is interactive. Or... if you just want to operate on a particular region, you want to narrow the...
From: Thomas Hundt <thundt@...> Subject: Re: [jasspa] Restricting actions on text to a region Date: Wed, 01 Jun 2005 12:33:09 -0700 Yes, I know about...
Meino Christian Cramer
Meino.Cramer@...
Jun 1, 2005 7:55 pm
1424
Thomas's suggestion of using narrowing is the best solution. Use the main menu's Edit -> Narrow To to reduce the visible part of the buffer to the required...
Steven Phillips
bill@...
Jun 1, 2005 8:03 pm
1425
... Nice find ! Fix is as follows if you roll your own. Jon. cd /home/jon/merep/me/src/ cvs diff -c -w hilight.c Index: hilight.c ...
From: Steven Phillips <bill@...> Subject: Re[2]: [jasspa] Restricting actions on text to a region Date: Wed, 1 Jun 2005 21:02:52 +0100 Is there a...
Meino Christian Cramer
Meino.Cramer@...
Jun 2, 2005 4:54 am
1427
I was going to say, you want "unnarrow-buffer". But it turns out that's a macro in my init file. I don't remember now why I wrote it, but I must have been...
First, let me say that I really-really like the latest Jasspa ME! I'd like to be able to insert HTML, actually any XML, tags in a file with only one or two...
The "Getting Started With JASSPA MicroEmacs" is wonderful! It sure would be nice to have the contents of the ME Help file in a PDF or some other form that...
Why not? It's trivial to write a macro to insert stuff like this: ; from myhtml.emf define-macro open-anchor insert-string "<a href=\"\"></a>" 6 backward-char...
Seems like a good first step. I'm not sure it's practical to bind each to a key because there are probably 20 or 30 tags to insert. But defining the macros...
I just put the key binding there because that's what I am using for this particular example. Here's the other half of the puzzle. The command to read up on is...
... I think wonderful is a little strong, but it is a start. Glad it was useful. Comments on how it may be improved are always welcomed. ... PDF would be nice....
... Have you tried turning the toolbar on? This might do what you want (Steve is probably better at answering this one than myself as I only use the keyboard)....
Jon, I haven't done any DocBook, but I do have an SGML background. Maybe I can be some help to get the existing doc into SGML. Send me an e-mail and we can see...
That looks like it will do the trick. I just have to dig out how to make my own. Thanks!! Norm ... (Steve is probably better ... user-setup) -> "Platform" ... ...
... For HTML then the files to look at are:- html.eaf hkhtml.eaf If you are dealing with SGML then there is a sgml.eaf This really needs a hksgml.eaf. The...
Below is a version of string-rectangle with suggested changes, if no one objects this will be in the next release. Steve ... ; string-rectangle; The user is...
Steven Phillips
bill@...
Jun 5, 2005 10:32 pm
1440
Changes to the eaf are not automatically reload due to performance. The best way to see your changes is to save the file, go to a buffer of the right type...
Phillips, Steven
sphillips@...
Jun 6, 2005 7:04 am
1441
Do comments affect the evaluation time of macros? I guess what I'm really asking is if comments get ignored during define-macro or during the evaluation of the...
Schofield, Bryan (GE ...
Bryan.Schofield@...
Jun 6, 2005 2:43 pm
1442
Comments have no effect on performance, they can however chew memory if the comment is at the end of a non-empty line, i.e.: ; this comment will take no memory...
Phillips, Steven
sphillips@...
Jun 6, 2005 3:32 pm
1443
Hello! please, look at the my project macros screenshot http://www.linux.org.ru/gallery/bigKr8zI3.png its looks like vim project plugin and user can narrow...
OK. I post it all :) http://www.geocities.com/maccarka/jasspa.zip color scheme - schememd.emf users tools with more handy(for me of course) than jasspa-default...
I just put together a rudimentary vi mode for Jasspa's Emacs[1]. It's 90% generated code (ugly, counter-efficient etc.) All (coding) help, comments,...
Somebody bound C-c C-g to fill-paragraph-gutter in hktxt.emf (or rather docmacro.emf). That's a really Bad Idea, IMO. C-g should always cancel whatever...