Tôi có chức năng sau đây, thích nghi một chút từ đây :
;; Insert text around a region. In this case, it's
;; the LaTeX code environment from the listings package
(defun wrap-code (start end)
"Insert a \begin{code} and \end{code} around a region."
(interactive "r")
(save-excursion
(goto-char start) (insert "\\begin{code}")
(goto-char end) (insert "\\end{code}")
))
;; Assign its shortcut
(global-set-key (kbd "C-c p") 'wrap-code)
Nếu sau đó tôi chọn một khu vực và áp dụng chức năng của mình, nó sẽ chèn \end{code}
sai vị trí:
\begin{code}while :; do
echo this is\end{code} a test
done