A minor mode to replace keywords or regular expression with SVG tags.
You need first to set svg-tag-tags
that is a list of item here each
item has the form (KEYWORD (TAG COMMAND HELP))
where:
- KEYWORD is a regular expression including a matched group of
the form
\\(xxx\\)
. If this is not the case the whole string will be used a the matched group. - TAG is either a SVG image that will be displayed using the 'display property or a function that accepts a unique string argument (match-string 1) and returns an SVG image.
- COMMAND is a command to be executed when user clicks on the tag. It can be nil if no command is associated with the tag.
- HELP is a string to be displayed when mouse pointer is over the tag. It can be nil if no command is associated with the tag.
then you can invoke mode with M-x svg-tag-mode
. Here are some examples:
- Replace any occurrence of
:TODO:
with a static SVG tag displayingTODO
(setq svg-tag-tags
'((":TODO:" . ((lambda (tag) (svg-tag-make "TODO"))))))
- Replace any occurrence of
:HELLO:
with a static SVG tag displayingHELLO
that can be clicked to execute the specified command. Help message is displayed when the tag is hovered with the pointer.
(setq svg-tag-tags
'((":HELLO:" . ((lambda (tag) (svg-tag-make "HELLO"))
(lambda () (interactive) (message "Hello world!"))
"Print a greeting message"))))
- Replace any occurrence of
:TODO:
with a dynamic SVG tag displaying:TODO:
(setq svg-tag-tags
'((":TODO:" . ((lambda (tag) (svg-tag-make tag))))))
- Replace any occurrence of
:TODO:
with a dynamic SVG tag displayingTODO
(setq svg-tag-tags
'((":TODO:" . ((lambda (tag)
(svg-tag-make tag :beg 1 :end -1))))))
- Replaces any occurrence of
:XXX:
with a dynamic SVG tag displayingXXX
(setq svg-tag-tags
'(("\\(:[A-Z]+:\\)" . ((lambda (tag)
(svg-tag-make tag :beg 1 :end -1))))))
- Replaces any occurrence of
:XXX|YYY:
with two adjacent dynamic SVG tags displayingXXX
andYYY
(setq svg-tag-tags
'(("\\(:[A-Z]+\\)\|[a-zA-Z#0-9]+:" . ((lambda (tag)
(svg-tag-make tag :beg 1 :inverse t
:margin 0 :crop-right t))))
(":[A-Z]+\\(\|[a-zA-Z#0-9]+:\\)" . ((lambda (tag)
(svg-tag-make tag :beg 1 :end -1
:margin 0 :crop-left t))))))
- This replaces any occurrence of
:#TAG1:#TAG2:…:$
($
means end of line) with a dynamic collection of SVG tags. Note the#
symbol in front of tags. This is mandatory because Emacs cannot do regex look ahead.
(setq svg-tag-tags
'(("\\(:#[A-Za-z0-9]+\\)" . ((lambda (tag)
(svg-tag-make tag :beg 2))))
("\\(:#[A-Za-z0-9]+:\\)$" . ((lambda (tag)
(svg-tag-make tag :beg 2 :end -1))))))
As issue #27 mentioned, SVG tags cannot render in org-agenda, because
svg-tag-mode
uses font-lock-mode
to show SVG tags. However, org-agenda
does not use font-lock-mode
, so it only shows rendered SVG tags in visited
buffers. One way to solve this problem is to use overly:
(defun org-agenda-show-svg ()
(let* ((case-fold-search nil)
(keywords (mapcar #'svg-tag--build-keywords svg-tag--active-tags))
(keyword (car keywords)))
(while keyword
(save-excursion
(while (re-search-forward (nth 0 keyword) nil t)
(overlay-put (make-overlay
(match-beginning 0) (match-end 0))
'display (nth 3 (eval (nth 2 keyword)))) ))
(pop keywords)
(setq keyword (car keywords)))))
(add-hook 'org-agenda-finalize-hook #'org-agenda-show-svg)