Re: marrying braket for ?: operator

2005-07-28 Thread Alan Mackenzie
Robert Marshall <[EMAIL PROTECTED]> wrote on Thu, 28 Jul 2005 21:06:20 +0100: > On Thu, 28 Jul 2005, Alan Mackenzie wrote: >> Baloff <[EMAIL PROTECTED]> wrote on 28 Jul 2005 15:20:51 +1000: >>> Hello >>> when I move my pointer to a braket, it highlight its marrying >>> braket. but how can I get

font size

2005-07-28 Thread Baloff
Hello I am trying to change the font size. after reading in info info on how to seach the info. I was able to find in info emacs ps-font-size should do it. but when I type ps in the mini buffer I get Possible completions are: ps-despool ps-line-lengths ps-mode

color theme in windows emacs

2005-07-28 Thread renwei
Hi, i am using emacs 21.3 on a windows xp system. I installed the color theme package (which is color-theme.el) and it doesn't seem to be working completely. once i have selected a theme, the background, scrolls and cursors all change color, but all my of text is always of the same color - i tested

Re: igrep on remote files with tramp?

2005-07-28 Thread Kevin Rodgers
Michael Albinus wrote: > Kevin Rodgers <[EMAIL PROTECTED]> writes: >>To properly support remote files, igrep would need to invoke the grep >>command in a remote shell. I know there has been discussion about >>whether Emacs should implement process handlers, so that tramp could run >>programs on a

(no subject)

2005-07-28 Thread [EMAIL PROTECTED]
On: 28 Jul 2005, Tim X <[EMAIL PROTECTED]> wrote: > However, as the only reason the OP wants this behavior is so > that he can see the header line of the file at the same time as > viewing row data which is more than one window in distance from > the header line in his file, I'm thinking he is pr

Re: Link between two buffers

2005-07-28 Thread [EMAIL PROTECTED]
On: 28 Jul 2005, Tim X <[EMAIL PROTECTED]> wrote: > However, as the only reason the OP wants this behavior is so > that he can see the header line of the file at the same time as > viewing row data which is more than one window in distance from > the header line in his file, I'm thinking he is pr

Problem setting default font for my windows (frames)

2005-07-28 Thread Ulrich Hobelmann
In my init file I have the following definitions: (set-default-font "-*-*-medium-r-normal-*-13-*-*-*-*-*-fontset-monaco13") (defun font-monaco-13 () (message "set-font") (set-frame-font "-*-*-medium-r-normal-*-13-*-*-*-*-*-fontset-monaco13")) (setq after-make-frame-functions (appe

Re: Link between two buffers

2005-07-28 Thread Marc Tfardy
Pascal Bourguignon wrote: drkm <[EMAIL PROTECTED]> writes: Pascal Bourguignon writes: There is follow-mode which does it vertically. Perhaps you could hack it to do it also horizontally, depending on how the windows are split when starting it... Why "depending on how the windows are spl

Re: Problem with UNIX/DOS issue on Emacs for Windows

2005-07-28 Thread Jason Rumney
exits funnel <[EMAIL PROTECTED]> writes: > So, what's going on? On what does emacs base the > determination that the one file is a unix file while > hte other is not? The line ends are inconsistent. Or there is a ^M in the middle of a line somewhere. If this is deliberate (part of a string maybe

Re: {}-block matching in minibuffer

2005-07-28 Thread Marc Tfardy
Klaus Berndl wrote: i just tried the download - has worked very well... Yes, I downloaded the new version too. Thanx again for this hint! regards Marc ___ Help-gnu-emacs mailing list Help-gnu-emacs@gnu.org http://lists.gnu.org/mailman/listinfo/hel

Re: Problem with UNIX/DOS issue on Emacs for Windows

2005-07-28 Thread Peter Dyballa
Am 28.07.2005 um 22:41 schrieb exits funnel: each line ending is marked by a '0d0a' pair This in decimal 13 and 10 meaning C-m and C-j, i.e. they're CR-LF -- and this should be DOS. You could try to revert the buffer from the file with a new encoding: C-x RET r RET (revert-buffer-with-c

Re: igrep on remote files with tramp?

2005-07-28 Thread Michael Albinus
Kevin Rodgers <[EMAIL PROTECTED]> writes: > To properly support remote files, igrep would need to invoke the grep > command in a remote shell. I know there has been discussion about > whether Emacs should implement process handlers, so that tramp could run > programs on a remote host when invoked

Re: marrying braket for ?: operator

2005-07-28 Thread Kevin Rodgers
Robert Marshall wrote: > And it's probably not straightforward (for either case), you might have > (x > 4) ? weeble::kerplunk(funky::gibbon ? whoop : holler()) : foible::gibber::eugh(); It would be a lot more straightforward if C-M-f (forward-sexp) and C-M-b (backward-sexp) would recognize thi

Problem with UNIX/DOS issue on Emacs for Windows

2005-07-28 Thread exits funnel
Hello, I'm running the native Emacs for windows version 21.3.1 on a Win2000 machine. I'm using it to edit two different java source files. One of the source files looks fine in the buffer but the other, while formatted correctly, displays '^M' olong with each carriage return. I also note that f

Re: marrying braket for ?: operator

2005-07-28 Thread Robert Marshall
On Thu, 28 Jul 2005, Alan Mackenzie wrote: > Baloff <[EMAIL PROTECTED]> wrote on 28 Jul 2005 15:20:51 +1000: >> Hello > >> when I move my pointer to a braket, it highlight its marrying >> braket. but how can I get it to do the same with the ternary >> if-else operator (?:) I hope this is a good

Re: indenting and wrapping

2005-07-28 Thread Jochen Küpper
Jeff Hartnell <[EMAIL PROTECTED]> writes: > 2.) Latex mode related > I can't change the "M-q" command that wraps all the text to a > certain width. I tried: [...] > but it doesn't work for latex files (it works fine if I have > file.txt say) ,[ C-h v fill-column RET ] | fill-column's value

Re: igrep on remote files with tramp?

2005-07-28 Thread Michael Albinus
Daniel Berdine <[EMAIL PROTECTED]> writes: > Or, does anyone know of any other way to make it work? I haven't worked with igrep yet. But for my own needs, I have trained Tramp to support `find-grep-dired'. HTH. > Thanks in advance! > -Dan Best regards, Michael. __

Re: igrep on remote files with tramp?

2005-07-28 Thread Kevin Rodgers
Daniel Berdine wrote: > I need to work with files on a remote server, and tramp so far has > seemed the best way to get the job done. However, I would very much like > to be able to use the igrep functions, in particular dired-do-igrep, in > this context. Unfortunately, igrep doesn't seem to know

Re: igrep on remote files with tramp?

2005-07-28 Thread Daniel Berdine
In article <[EMAIL PROTECTED]>, Daniel Berdine <[EMAIL PROTECTED]> wrote: > I need to work with files on a remote server, and tramp so far has > seemed the best way to get the job done. However, I would very much like > to be able to use the igrep functions, in particular dired-do-igrep, in >

igrep on remote files with tramp?

2005-07-28 Thread Daniel Berdine
I need to work with files on a remote server, and tramp so far has seemed the best way to get the job done. However, I would very much like to be able to use the igrep functions, in particular dired-do-igrep, in this context. Unfortunately, igrep doesn't seem to know how to use tramp. Looking a

Re: Best way to run on Windows XP

2005-07-28 Thread Klaus Berndl
On Tue, 26 Jul 2005, Eli Zaretskii wrote: > > From: [EMAIL PROTECTED] (J. David Boyd) > > Date: Mon, 25 Jul 2005 15:04:03 -0400 > > > > >> 2. Is a X-Server needed for running the cygwin-port of Emacs. > > > > > > Yes. > > > > No, it is not necessary at all. You can run emacs just fine in a cons

Re: {}-block matching in minibuffer

2005-07-28 Thread Klaus Berndl
i just tried the download - has worked very well... Klaus On Mon, 25 Jul 2005, Marc Tfardy wrote: > Klaus Berndl wrote: > > On Mon, 25 Jul 2005, Marc Tfardy wrote: > > > >> Johan Bockgård wrote: > >> > >>>Marc Tfardy <[EMAIL PROTECTED]> writes: > >>> > >>> > I use c-mode often and I have

Re: different sessions into one

2005-07-28 Thread Johan Meskens CS3 jmcs3
Peter Dyballa wrote: Am 28.07.2005 um 06:45 schrieb Johan Meskens CS3 jmcs3: how can i force the opening of buffers within the first emacs session ? See server-start and the little utility emacscslient. When you define an environment variable EDITOR that contains emacsclient a few commands

Re: marrying braket for ?: operator

2005-07-28 Thread Alan Mackenzie
Baloff <[EMAIL PROTECTED]> wrote on 28 Jul 2005 15:20:51 +1000: > Hello > when I move my pointer to a braket, it highlight its marrying braket. > but how can I get it to do the same with the ternary if-else operator > (?:) I hope this is a good group for this question otherwise please > point me.

Re: different sessions into one

2005-07-28 Thread Lennart Borgman
Johan Meskens CS3 jmcs3 wrote: hello i have a session of emacs open: [EMAIL PROTECTED]:~$ emacs now if i do: [EMAIL PROTECTED]:~$ ps aux | emacs & , a second session of emacs will open the same goes for when i call emacs from within perl scripts , each time new emacs sessions will open

Re: different sessions into one

2005-07-28 Thread Peter Dyballa
Am 28.07.2005 um 06:45 schrieb Johan Meskens CS3 jmcs3: how can i force the opening of buffers within the first emacs session ? See server-start and the little utility emacscslient. When you define an environment variable EDITOR that contains emacsclient a few commands will send Emacs text