Skip to main content
added 149 characters in body
Source Link
Dilna
  • 1.5k
  • 7
  • 13

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))) 

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 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))) 

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))) 
added 3 characters in body
Source Link
Dilna
  • 1.5k
  • 7
  • 13

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 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))) 

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))) 

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 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))) 
Source Link
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)))