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
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:
> >
> > ,
"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
>
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
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
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
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!