I have this piece that indicates an opening parenthesis by blinking it.
Currently, if I want 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 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)))
M-x rk-blink-matching-openeach time. I would like that as move through the text, the opening or closing parentheses blink when the cursor is near them.