Created
November 22, 2011 09:20
-
-
Save itoshkov/1385279 to your computer and use it in GitHub Desktop.
Emacs lisp toggle-earmuffs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun toggle-earmuffs () | |
"Add or remove earmuffs (asterisks at front and end) of | |
variables." | |
(interactive) | |
(let* ((saved-point (point)) | |
(variable (thing-at-point 'symbol)) | |
(bounds (bounds-of-thing-at-point 'symbol)) | |
(len (- (cdr bounds) (car bounds))) | |
(start-char (elt variable 0)) | |
(end-char (elt variable (1- len)))) | |
(save-excursion | |
(cond | |
;; remove earmuffs | |
((and (= ?* start-char) (= ?* end-char) (> len 1)) | |
(kill-region (car bounds) (cdr bounds)) | |
(insert (substring variable 1 (1- len))) | |
(setq saved-point (1- saved-point))) | |
;; add earmuffs | |
((and (/= ?* start-char) (/= ?* end-char)) | |
(kill-region (car bounds) (cdr bounds)) | |
(insert (concat "*" variable "*")) | |
(setq saved-point (1+ saved-point))) | |
((and (= ?* start-char) (= ?* end-char) (= len 1)) | |
(message "Don't know what to do with a single asterisk")) | |
(t (message "The symbol has asterisk at the one end only")))) | |
(goto-char saved-point))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment