I have this piece that indicates an opening parenthesis by blinking it. How can
Currently, if I make the function permanent? What other improvements canwant to mark an opening parenthesis, I have to do call M-x rk-blink-matching-open each time. I would like the blinking an a matching parenthesis to help me with debugging code?happen automatically, whenever the cursor is near an opening or closing parentheses.
(defun rk-blink-matching-open () "Indicate momentarily the start of parenthesized sexp before point." (interactive) (let ((blink-matching-paren-distance (buffer-size)) (blink-matching-paren t)) (blink-matching-open))) (defun rk-blink-matching-open () "Indicate momentarily the start of parenthesized sexp before point." (interactive) (let ((blink-matching-paren-distance (buffer-size)) (blink-matching-paren t)) (blink-matching-open)))