I am trying to set up a tempo-template that when called with a C-u prefix is to surround the region with the tags \begin{environment} and \end{environment} and insert the tag \item at the beginning of each line in the region. However it gives as 'save-excursion: Args out of range: 2247, 2312' error.
(require 'tempo)
(setq tempo-interactive t)
(tempo-define-template "env"
'("\\begin{" (p "Environment: " environment) "}" > n>
r> n>
"\\end{" (s environment) "}" > n
(save-excursion
(narrow-to-region start end)
(goto-char (point-min))
(while (re-search-forward "^" nil t) (replace-match "\\item " nil t))
(widen)
))
"env"
"Insert a LaTeX environment.")
(defun item (start end)
(interactive "r")
(save-excursion
(narrow-to-region start end)
(goto-char (point-min))
(while (re-search-forward "^" nil t) (replace-match "\\item " nil t))
(widen)
))
The item function by itself works fine on a region. I tried calling the elisp function item in the tempo-template:
(tempo-define-template "env"
'("\\begin{" (p "Environment: " environment) "}" > n>
r> n>
"\\end{" (s environment) "}" > n
(item point-min point-max)
)
"env"
"Insert a LaTeX environment.")
However, this gives a 'eval: Symbol's value as variable is void: point-min' error. Any pointers to fix the problem are appreciated.