aboutsummaryrefslogtreecommitdiff
path: root/emms-tag-editor.el
diff options
context:
space:
mode:
authorYe Wenbin <wenbinye@gmail.com>2007-05-21 06:51:00 +0000
committerYe Wenbin <wenbinye@gmail.com>2007-05-21 06:51:00 +0000
commita9b3bfea81e3edc625152051d32417ef3e194b11 (patch)
tree83430ecfbf117d866cd5032e3f3bc5d6c9003a74 /emms-tag-editor.el
parent806cbec32117e9ef1434cad34c91ec894ab07fb4 (diff)
Highlight text to replace, add doc for the command
darcs-hash:20070521065107-94065-b55aac1aaed355a50b8643ef1d77732c170cd6fe.gz
Diffstat (limited to 'emms-tag-editor.el')
-rw-r--r--emms-tag-editor.el53
1 files changed, 30 insertions, 23 deletions
diff --git a/emms-tag-editor.el b/emms-tag-editor.el
index ca25b4c..bb5c327 100644
--- a/emms-tag-editor.el
+++ b/emms-tag-editor.el
@@ -268,6 +268,8 @@ you can apply the command to a selected region."
(insert value)))))
(defun emms-tag-editor-replace-in-tag (tag from to)
+ "Query and replace text in selected TAG. For example, select tag
+info-title, then replace will only occur in title."
(interactive
(cons (completing-read "Replace in tag: "
emms-tag-editor-tags nil t)
@@ -277,29 +279,34 @@ you can apply the command to a selected region."
"Query replace regexp")
t)))
(butlast common))))
- (save-excursion
- (save-restriction
- (if (and mark-active transient-mark-mode)
- (narrow-to-region (region-beginning) (region-end)))
- (setq tag (concat (regexp-quote tag) "[ \t]+=[ \t]+"))
- (goto-char (point-min))
- (map-y-or-n-p
- (lambda (match)
- (format "Replace %s to %s" match to))
- (lambda (match)
- (delete-region (- (point) (length match)) (point))
- (insert to))
- (lambda ()
- (if (and (save-excursion
- (re-search-backward tag (line-beginning-position) t))
- (re-search-forward from (line-end-position) t))
- (match-string 0)
- (let (found)
- (while (and (not found)
- (re-search-forward tag nil t))
- (if (re-search-forward from (line-end-position) t)
- (setq found t)))
- (and found (match-string 0)))))))))
+ (let ((overlay (make-overlay (point-min) (1+ (point-min)))))
+ (overlay-put overlay 'face 'match)
+ (unwind-protect
+ (save-excursion
+ (save-restriction
+ (if (and mark-active transient-mark-mode)
+ (narrow-to-region (region-beginning) (region-end)))
+ (setq tag (concat (regexp-quote tag) "[ \t]+=[ \t]+"))
+ (goto-char (point-min))
+ (map-y-or-n-p
+ (lambda (match)
+ (move-overlay overlay (match-beginning 0) (match-end 0))
+ (format "Replace %s to %s" match to))
+ (lambda (match)
+ (delete-region (- (point) (length match)) (point))
+ (insert to))
+ (lambda ()
+ (if (and (save-excursion
+ (re-search-backward tag (line-beginning-position) t))
+ (re-search-forward from (line-end-position) t))
+ (match-string 0)
+ (let (found)
+ (while (and (not found)
+ (re-search-forward tag nil t))
+ (if (re-search-forward from (line-end-position) t)
+ (setq found t)))
+ (and found (match-string 0))))))))
+ (delete-overlay overlay))))
(defun emms-tag-editor-transpose-tag (tag1 tag2)
(interactive