view emacs/xml-hack.el @ 13:1cd5c7952aaa default tip

fix failure to read first line of Air/Lava, keep me from swimming in Lava, again!
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Sun, 30 Jan 2022 14:49:33 -0500
parents 509549c55989
children
line wrap: on
line source

(defun sgml-tag-again ()
  "Insert another of the tag we're in as sibling"
  (interactive )
  (let ((elt (sgml-find-element-of (point))))
    (sgml-up-element)
    (sgml-insert-element elt)))

(define-key sgml-mode-map "\C-cn" 'sgml-tag-again)