Skip to main content
1 of 3
Dilna
  • 1.5k
  • 7
  • 13

Indicating parentheses

I have this piece that indicates an opening parenthesis by blinking it. How can I make the function permanent? What other improvements can I do to help me with debugging code?

(defun 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))) 
Dilna
  • 1.5k
  • 7
  • 13