Search the web
Sign In
New User? Sign Up
jasspa · JASSPA's MicroEmacs
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1655 - 1684 of 2512   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1655
I'm editing a .txt file that contains code on how to create an XML document. Despite this, ME thinks that the document is an XML file and is indenting some...
Gadrin
gadrin77
Offline Send Email
Oct 1, 2005
8:00 pm
1656
It obviously thinks this is an XML file. Perhaps something at the beginning of the file? Not just the extension (".txt" etc.) determines what ME thinks the...
Thomas Hundt
thundt
Offline Send Email
Oct 1, 2005
8:34 pm
1657
so the string "XML" somewhere in the file will trigger this ? yuck. ok, I'll scope out the suggestions you made and see about cleaning up the .emf files. ...
Gadrin
gadrin77
Offline Send Email
Oct 2, 2005
3:49 am
1658
I take it you refer to the grep command. Note that this is intended to print out any references to fhook-xml -- which is what you're looking for. -Th...
Thomas Hundt
thundt
Offline Send Email
Oct 2, 2005
5:31 am
1659
... intended to ... looking for. ... Yes, I have another editor that has a GREP utility (does more or less the same thing as ME) that I'm a bit more used to....
Gadrin
gadrin77
Offline Send Email
Oct 2, 2005
5:58 pm
1660
Hi, There are some problems with syntax highlighting Python scripts in MicroEmacs '05 (JASSPA ofcourse) ( same in '02 release). I've searched mailing list...
Bosko Markovic
bosko.m@...
Send Email
Oct 7, 2005
9:14 pm
1661
Bosko, I suggest you try something like the following: hilight .hilight.python 4 "\"\"\"" "\"\"\"" "\\" .scheme.string Add this line to a mypython.emf...
Steven Phillips
bill@...
Send Email
Oct 7, 2005
10:20 pm
1662
Thank you Steve for solution. I added hilight .hilight.python 4 "\"\"\"" "\"\"\"" "\\" .scheme.string hilight .hilight.python 4 "\'\'\'" "\'\'\'" "\\"...
Bosko Markovic
bosko.m@...
Send Email
Oct 8, 2005
11:35 am
1663
If I wasn't clear enough in my last post take a look at this sample python script. http://users.verat.net/~bosko.m/files/tt000.py...
Bosko Markovic
boskom77
Offline Send Email
Oct 10, 2005
2:30 pm
1664
Hi all. I have found (and fixed) a little bug (in spawn.c file) that occurs with Linux kernel 2.6.x on 64bit platform. This occurs when you try to exec...
ZarathustraXYZ
Offline Send Email
Oct 18, 2005
8:46 pm
1665
... Hi Vincenzo, I think you are the first to attempt to build a 64-bit Linux image. Looking through your changes, certainly a little bit cleaner - probably ...
Jon Green
bigfatmrmoose
Offline Send Email
Oct 19, 2005
12:38 am
1666
Hi Jon, thanks for your great work. Microemacs is a very good editor. I have been using it for more than 3 years on i686, on Alpha ( :-) ) and now on AMD64. I...
ZarathustraXYZ
Offline Send Email
Oct 19, 2005
8:56 pm
1667
Hi all, I have a problem with me 05: in a script I wrote 1 replace-string "\([^\\]\)}" "\1 " but I get the following error: [Regex Error: Open class ([...])] ...
Christof Boeckler
boeckler@...
Send Email
Oct 28, 2005
6:51 pm
1668
Me again, I kicked XEmacs today (200MB!!) because I found out how easy it is to script me :-) Most of my macros are already working (LaTeX-stuff, working like...
Christof Boeckler
boeckler@...
Send Email
Oct 28, 2005
7:10 pm
1669
Suggest you use isearch-forward and type your string one char at a time to test it out. (Offhand, my guess is the second backslash inside the [] is the...
Thomas Hundt
thundt
Offline Send Email
Oct 28, 2005
7:58 pm
1670
Here are my quickref notes, some of which are more useful than others. Some of the stuff is out of date. Test it before you publish. I'd definitely add the...
Thomas Hundt
thundt
Offline Send Email
Oct 28, 2005
8:17 pm
1671
... The problem is the backslash escape character in a macro script. In a script the escape character is \ so for a single backslash you need two i.e. \\. For...
Jon Green
bigfatmrmoose
Offline Send Email
Oct 29, 2005
11:03 am
1672
... Very nice. A welcome addition to the documentation. Jon....
Jon Green
bigfatmrmoose
Offline Send Email
Oct 29, 2005
11:06 am
1673
... Are you using the new 05 "notes" command (M-x notes) to store this sort of stuff? If not I suggest that you give it a go, this is where I put all sorts of...
Jon Green
bigfatmrmoose
Offline Send Email
Oct 29, 2005
11:30 am
1674
Christof, I believe the following is what you need: 1 replace-string "\\([^\\\\]\\)}" "\\1 " Lots and lots of '\'s! Like the reference card, looking forward to...
Steven Phillips
bill@...
Send Email
Oct 29, 2005
1:57 pm
1675
First I've heard of the 'notes' command. Or maybe I tried it once and couldn't figure it out. I've really, really been wanting some kind of outline-based...
Thomas Hundt
thundt
Offline Send Email
Oct 29, 2005
5:35 pm
1676
Hey Thomas, although I can't say much about your remarks on the notes mode, maybe I have something useful regarding your last wish. ... Take a look at...
Christof Boeckler
boeckler@...
Send Email
Oct 29, 2005
6:39 pm
1677
Thanks but there are many such languages... (this one looks similar to what is used on Wikis)... the whole point is that I want there to be an editor mode for...
Thomas Hundt
thundt
Offline Send Email
Oct 29, 2005
6:56 pm
1678
... I wonder whether that is also written in the documentation, because it seems new to me - although it perfectly works for me ... ... Maybe you have a...
Christof Boeckler
boeckler@...
Send Email
Oct 29, 2005
7:40 pm
1679
... It works correctly for me, inserting only ONE copy of the region: kill-region set-variable #l1 @y insert-string "before" insert-string #l1 insert-string...
Thomas Hundt
thundt
Offline Send Email
Oct 29, 2005
8:51 pm
1680
A while ago I created a similar format called JST (see hkjst.emf), based loosely on Jon's Doc mode, JST had the advantage of being able to generate html & rtf,...
Steven Phillips
bill@...
Send Email
Oct 29, 2005
8:51 pm
1681
... Hm, now I realized the problem is somewhere else: depending on the way you mark the region it either works or not. It works if you do it the standard way...
Christof Boeckler
boeckler@...
Send Email
Oct 30, 2005
6:51 am
1682
... I vote for txt2tags. ... I haven't found any. ... Gruß / Regards Christof -- http://home.in.tum.de/~boeckler/ http://www.spiegel.de/zwiebelfisch Da sie...
Christof Boeckler
boeckler@...
Send Email
Nov 1, 2005
8:08 am
1683
Hi, For my daily work it is neccessary, that I will not save files with lines matching ^[ ]+$ I thought of binding 'clean' to a hook but can't find an...
Meino Christian Cramer
Meino.Cramer@...
Send Email
Nov 1, 2005
6:34 pm
1684
There is no built in mechanism at present although I can see a need of one. With the current release the best (and only) solution I can think of is to rebind...
Steven Phillips
bill@...
Send Email
Nov 1, 2005
11:01 pm
Messages 1655 - 1684 of 2512   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help