Re: matching parenthesis

2005-07-26 Thread Marc Tfardy
Martin Slouf schrieb: not exactly what you ask for, but i know this one: (show-paren-mode 1) ;; define function to match a parenthesis otherwise insert a '~' (defun goto-match-paren (arg) "Go to the matching parenthesis if on parenthesis otherwise insert '~'." (interactive "p") (cond ((loo

Re: matching parenthesis

2005-07-25 Thread Sergei
Yes, this seems to work. Thank you. Johan Bockgård: > "Sergei" <[EMAIL PROTECTED]> writes: > > > I do not know, if this is a known issue, but I had to comment out > > ;(require 'mic-paren) (paren-activate) from my .emacs, because it > > blocks calc, making it report on every input: > > > > ,

Re: matching parenthesis

2005-07-25 Thread Johan Bockgård
"Sergei" <[EMAIL PROTECTED]> writes: > I do not know, if this is a known issue, but I had to comment out > ;(require 'mic-paren) (paren-activate) from my .emacs, because it > blocks calc, making it report on every input: > > , > | byte-code: Key sequence C-M-f uses invalid prefix characters >

Re: matching parenthesis

2005-07-25 Thread Martin Slouf
not exactly what you ask for, but i know this one: (show-paren-mode 1) ;; define function to match a parenthesis otherwise insert a '~' (defun goto-match-paren (arg) "Go to the matching parenthesis if on parenthesis otherwise insert '~'." (interactive "p") (cond ((looking-at "\\s\(") (forwar

Re: matching parenthesis

2005-07-25 Thread Sergei
Klaus Berndl: > On Fri, 22 Jul 2005, Johan Bockg?rd wrote: ... >> mic-paren.el > A tip from the author and maintainer ;-) > ;; This file can be obtained from "The EmacsWiki" and here from the > ;; packages-site: http://www.emacswiki.org/elisp/index.html I do not know, if this is a known issue

Re: matching parenthesis

2005-07-22 Thread Klaus Berndl
On Fri, 22 Jul 2005, Johan Bockgård wrote: > Jan Guido Donath <[EMAIL PROTECTED]> writes: > > > The problem is: when the matching parenthesis is out of the display, > > that doesnt make much sense to me ... I remember that once, it > > showed an expression in the minibuffer like "mathes (defu

Re: matching parenthesis

2005-07-22 Thread Johan Bockgård
Jan Guido Donath <[EMAIL PROTECTED]> writes: > The problem is: when the matching parenthesis is out of the display, > that doesnt make much sense to me ... I remember that once, it > showed an expression in the minibuffer like "mathes (defun..." or > something like this. this makes a lot of sense!