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 1508 - 1537 of 2514   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1508
... The .emf files are picked up from "./" (current working directory) first then $search-path (See M-X describe-variables for the $search-path). $search-path...
Jon Green
jnaught@...
Send Email
Jul 1, 2005
10:21 am
1509
From: Jon Green <jnaught@...> Subject: Re: [jasspa] Search path issue -- CWD, $HOME Date: Fri, 01 Jul 2005 11:21:23 +0100 Isn't exactly that dangerous...
Meino Christian Cramer
Meino.Cramer@...
Send Email
Jul 1, 2005
2:22 pm
1510
Yes, I agree 100%, this is bad and I've gotten burned by it more than once and it's a real head-scratcher until you figure it out. Usually happens when...
Thomas Hundt
thundt
Offline Send Email
Jul 1, 2005
3:36 pm
1511
From: Thomas Hundt <thundt@...> Subject: Re: [jasspa] Search path issue -- CWD, $HOME Date: Fri, 01 Jul 2005 08:35:20 -0700 Hihihihi....think of a newbie...
Meino Christian Cramer
Meino.Cramer@...
Send Email
Jul 1, 2005
3:57 pm
1512
Hi, again I step into my own trap, I fear. I am currently fighting with a version of a macro of region-replace-string. My setup: One me Two frames One frame...
Meino Christian Cramer
Meino.Cramer@...
Send Email
Jul 1, 2005
5:33 pm
1513
You want @ml, not $ml. $ means system variable % means user global variable # means register variable (which is probably what you should use) -- local to a...
Thomas Hundt
thundt
Offline Send Email
Jul 1, 2005
6:46 pm
1514
From: Thomas Hundt <thundt@...> Subject: Re: [jasspa] mewbie question: narrowing of the unknown Date: Fri, 01 Jul 2005 11:46:23 -0700 Hi, yes, I did grep...
Meino Christian Cramer
Meino.Cramer@...
Send Email
Jul 1, 2005
7:35 pm
1515
... Well after all of that I'm still not convinced of a problem under NORMAL use. Which the scenario that we use. For a normal install then the macros are...
Jon Green
bigfatmrmoose
Offline Send Email
Jul 1, 2005
8:28 pm
1516
The problem is not when one creates macros in the out-of-the-way .../macros directory; the problem is when one creates macros in one's HOME directory or some...
Thomas Hundt
thundt
Offline Send Email
Jul 2, 2005
12:34 am
1517
Hi, for the region aware replace-string macro I want to access the history ("previous replace-string entries") from within that macro. I have grepped through...
Meino Christian Cramer
Meino.Cramer@...
Send Email
Jul 2, 2005
4:51 am
1518
Forget grepping the html documentation. Let Windows do it for you: Install the me.hlp file (Windows help file), open it, and use the Search>Find feature...
Thomas Hundt
thundt
Offline Send Email
Jul 2, 2005
7:06 am
1519
From: Thomas Hundt <thundt@...> Subject: Re: [jasspa] Accessing history entries of replace-string from within a macro Date: Sat, 02 Jul 2005 00:04:51...
Meino Christian Cramer
Meino.Cramer@...
Send Email
Jul 2, 2005
9:01 am
1520
... Help -> GeneralHelp search "HistoryGroupVariables" There are 4 references which link to a page "HistoryGroupVariables(4)" and I'm on UNIX ? Jon....
Jon Green
bigfatmrmoose
Offline Send Email
Jul 2, 2005
12:46 pm
1521
... Help -> GeneralHelp search "history" Brings up loads more references (as would be expected as the search is wider) and I'm still on UNIX ? Jon....
Jon Green
bigfatmrmoose
Offline Send Email
Jul 2, 2005
12:54 pm
1522
From: Jon Green <jon@...> Subject: Re: [jasspa] Accessing history entries of replace-string from within a macro Date: Sat, 02 Jul 2005 13:45:35 +0100 Ok...
Meino Christian Cramer
Meino.Cramer@...
Send Email
Jul 2, 2005
1:02 pm
1523
HistoryGroupVariables is the name of a help page, not a variable or command. So, of course, Apropos is not going to give you anything. Apropos is not part of...
Thomas Hundt
thundt
Offline Send Email
Jul 2, 2005
5:00 pm
1524
From: Thomas Hundt <thundt@...> Subject: Re: [jasspa] Accessing history entries of replace-string from within a macro Date: Sat, 02 Jul 2005 10:00:29...
Meino Christian Cramer
Meino.Cramer@...
Send Email
Jul 2, 2005
6:13 pm
1525
Hi, as a first try I wrote the following macro just for some tests: define-macro rreplace-string 3 screen-update ; disable screen updatea 3...
Meino Christian Cramer
Meino.Cramer@...
Send Email
Jul 3, 2005
4:51 am
1526
... Try this Jon. ; Replace a string in the region. As this is a simple replace string then it ; is not necessary to update the screen as the replace-string is...
Jon Green
bigfatmrmoose
Offline Send Email
Jul 3, 2005
11:48 am
1527
From: Jon Green <jon@...> Subject: Re: [jasspa] region-aware macro construction Date: Sun, 03 Jul 2005 12:48:34 +0100 Hi Jon ! Thanks a lot! But....what...
Meino Christian Cramer
Meino.Cramer@...
Send Email
Jul 3, 2005
1:26 pm
1528
... Why do you need it ? The only thing that it will do is flicker the screen. Screen update will effectivelly flush any outstanding updates to the screen, but...
Jon Green
bigfatmrmoose
Offline Send Email
Jul 3, 2005
3:19 pm
1529
From: Jon Green <jon@...> Subject: Re: [jasspa] region-aware macro construction Date: Sun, 03 Jul 2005 16:19:51 +0100 Hi Jon, ... Hrmrm..then I...
Meino Christian Cramer
Meino.Cramer@...
Send Email
Jul 3, 2005
3:58 pm
1530
... macros will not update the screen unless they are forced. If you run the macro and get to the prompt and then issue a ^L then you see the pending changes...
Jon Green
bigfatmrmoose
Offline Send Email
Jul 3, 2005
4:12 pm
1531
From: Jon Green <jon@...> Subject: Re: [jasspa] region-aware macro construction Date: Sun, 03 Jul 2005 17:12:11 +0100 Hi Jon, thanks a lot for your...
Meino Christian Cramer
Meino.Cramer@...
Send Email
Jul 3, 2005
5:39 pm
1532
So, a side effect of !FORCE is that whatever it runs will update the screen? (Undocumented.) -Th...
Thomas Hundt
thundt
Offline Send Email
Jul 3, 2005
7:00 pm
1533
By forced, Jon meant by calling screen-update; using !force will not up-date the screen. Steve...
Steven Phillips
bill@...
Send Email
Jul 3, 2005
10:08 pm
1534
That is correct. Steve...
Steven Phillips
bill@...
Send Email
Jul 3, 2005
10:24 pm
1535
Hi, (as so often... :) I am trying to get one macro, which I am writing to work. According that I have question: Suppose you have the following text fo...
Meino Christian Cramer
Meino.Cramer@...
Send Email
Jul 8, 2005
3:50 am
1536
... The narrow command works on lines, not part of lines, i.e. if I set the mark half way along this line and then did forward-line then 4 narrow-buffer the...
Phillips, Steven
sphillips@...
Send Email
Jul 8, 2005
6:45 am
1537
Hi, I have a longish file consisting of two rows of commands, ordered like that (but a lot more entries!) a g b h c i d j e k f l Now I want to become the file...
Meino Christian Cramer
Meino.Cramer@...
Send Email
Jul 8, 2005
5:15 pm
Messages 1508 - 1537 of 2514   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