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...
What you have to know is: the rectangle commands cut EXACTLY from the x,y of the point to the x,y of the mark. No special handling if one or the other happens...
Without trying to figure out your exact problem, let me say that sometimes you end up using the technique: copy stuff to a temporary buffer, do some work on...
1540
Steven Phillips
bill@...
Jul 8, 2005 7:22 pm
There is a new and improved solution to this problem. The mouse now supports copy and kill rectangle, see user-setup -> mouse. Use one of these to do this; it...
1541
Meino Christian Cramer
Meino.Cramer@...
Jul 8, 2005 11:09 pm
From: Steven Phillips <bill@...> Subject: Re[2]: [jasspa] copy-rectangle editing "problem" Date: Fri, 8 Jul 2005 20:22:01 +0100 Hi Steven, Hi Thomas! ...
... Yes. This is logical. Please think of the cursor (and the mark) being the (zero-width!) space between chars. The box on your screen is just a way of...
1543
Meino Christian Cramer
Meino.Cramer@...
Jul 9, 2005 3:05 am
From: Thomas Hundt <thundt@...> Subject: Re: [jasspa] copy-rectangle editing "problem" Date: Fri, 08 Jul 2005 16:42:58 -0700 Hi Thomas, ... I will never...
1544
Steven Phillips
bill@...
Jul 9, 2005 6:57 pm
Removing is easy - see docs on the command 'clean39; Steve...
1545
Meino Christian Cramer
Meino.Cramer@...
Jul 9, 2005 7:28 pm
Hi, is there a way to quickly kill the contents of a buffer except those few lines, which are narrowed out (invisible, 4 narrow-buffer used) ? Keep...
The obvious thing to try is beginning-of-buffer set-mark end-of-buffer kill-region Did you try this? It seems pretty "quick" to me. Another obvious way is to...
1547
Meino Christian Cramer
Meino.Cramer@...
Jul 10, 2005 4:49 am
From: Thomas Hundt <thundt@...> Subject: Re: [jasspa] Graceful kill Date: Sat, 09 Jul 2005 15:56:09 -0700 Hi Thomas, This was my first try also.... But...
1548
Phillips, Steven
sphillips@...
Jul 11, 2005 6:56 am
Without knowing where the narrow(s) are then its not trivial - see below, if you did then Thomas' suggestion to kill the required text first and then empty the...
1549
Phillips, Steven
sphillips@...
Jul 11, 2005 7:07 am
One thing both macros may be missing is a beginning-of-buffer to start with. The second macro is very inefficient, I suggest you change this one completely....
1550
Meino Christian Cramer
Meino.Cramer@...
Jul 12, 2005 1:32 am
From: "Phillips, Steven" <sphillips@...> Subject: RE: [jasspa] Graceful kill Date: Mon, 11 Jul 2005 03:08:43 -0400 Hi STeven, thank you very much for...
1551
Meino Christian Cramer
Meino.Cramer@...
Jul 14, 2005 3:57 am
Hi, currently I am trying to replace the bulky EMacs with Microemacs at my daily work in the office. It works so far, but the usage of tag files still does not...
1552
Phillips, Steven
sphillips@...
Jul 14, 2005 7:35 am
It looks like you have found a problem and I suggest we take this off line so we don't clutter the news group, i.e. rely directly to me. The first thing we...
1553
Meino Christian Cramer
Meino.Cramer@...
Jul 17, 2005 3:10 pm
Hi, I have some little questions concerning things of easy handling Microemacs. *** I am often editing a couple of files -- mainly config-files of some...
1554
Meino Christian Cramer
Meino.Cramer@...
Jul 17, 2005 3:52 pm
Hi, how can I convince (i)fill-pagraph not to insert extra spaces between words to do its job? I didn't found anything appropiate in the docs... Keep...
... Change the fill-mode. If you always want it to be left then set $fill-mode in your <user>.emf file to "L". If it is in a document type file then you can...
... Possibly need File->Favorites can add and delete buffers to this list. I always start me with the -c option so the file is typically in my buffer list when...
1557
Meino Christian Cramer
Meino.Cramer@...
Jul 17, 2005 4:47 pm
From: Jon Green <jon@...> Subject: Re: [jasspa] Fill-paragraph with not more than oine space Date: Sun, 17 Jul 2005 17:21:07 +0100 Uuuuh...Aaahhh! I...
1558
Meino Christian Cramer
Meino.Cramer@...
Jul 17, 2005 5:16 pm
From: Jon Green <jon@...> Subject: Re: [jasspa] some little questions Date: Sun, 17 Jul 2005 17:46:01 +0100 Hi Jon, thank you for your replies ! :O) ......
... You guys are funny. I'm going to have to try this one of these days. I never have more than a few open, say pertaining to just one project, and then open...
... Internal frames are like a new window canvas which you can split up with sub windows, the frames are layered and you can swap between the frames. The...
I love the availability of regular expressions in search and replace operations. And I'm glad that they are becoming more "standard" (e.g., use of \d and \D...
1562
Phillips, Steven
sphillips@...
Jul 21, 2005 8:28 am
Tom, The '*' operator is exactly the same as the '+' operator in regex except it will match no matches, i.e. its equivalent to a '+' and '?' combined. It is...
1563
Meino Christian Cramer
Meino.Cramer@...
Jul 30, 2005 5:47 am
Hi, duie to an install error I had to edit the /usr/shre/info/dir file, which conatins a summary of all info-files of my Linux system. I loaded it into...
1564
Meino Christian Cramer
Meino.Cramer@...
Aug 6, 2005 3:54 am
Hi, Is it possible to urge ME to think that a loaded file is of a certain different type than what ME thinks that it is ? Have a nice weekend! Meino...
1565
Steven Phillips
bill@...
Aug 6, 2005 6:55 am
In the buffer, simply running the correct fhook command should do it, i.e. if the file is really a 'C' source file do: esc x fhook-c Note you may not have...
I have a program that I use that wants to open files via MicroEMACS and specify an initial line and column. Is there a good solution for this? I'm tired of...