Al examinar las cuatro respuestas disponibles actualmente ( dos en Superusuario y dos en esta pregunta), veo los siguientes problemas:
- Los que están en SuperUser de Stefan y Peng Bai (moviéndose línea por línea, mirando la sangría actual) no implementan la retención de la posición actual de la columna y se mueven hacia el padre,
- La respuesta de Dan (usando re-search-forward para encontrar la siguiente línea con la misma sangría) salta las líneas con menos sangría: no sabe cuándo no hay un hermano próximo y, por lo tanto, puede pasar a algo que no sea un hermano pero un hijo de otro padre ... un próximo "primo" tal vez.
- La respuesta de Gilles (usando el modo de esquema) no retiene la posición de la columna y no funciona con líneas con sangría cero (líneas de "nivel superior"). Además, al observar su código
outline.el
, también va básicamente línea por línea de todos modos (usando outline-next-visible-heading
) en nuestro caso, ya que (casi) todas las líneas coincidirían con la expresión regular del esquema y contarían como un "encabezado".
Entonces, al reunir algunas ideas de cada una, tengo lo siguiente: avanzar línea por línea, saltando las líneas vacías y más sangradas. Si tiene la misma sangría, entonces es el próximo hermano. La idea básica se ve así:
(defun indentation-get-next-sibling-line ()
"The line number of the next sibling, or nil if there isn't any."
(let ((wanted-indentation (current-indentation)))
(save-excursion
(while (and (zerop (forward-line)) ; forward-line returns 0 on success
(or (eolp) ; Skip past blank lines and more-indented lines
(> (current-indentation) wanted-indentation))))
;; Now we can't go further. Which case is it?
(if (and (not (eobp)) (= (current-indentation) wanted-indentation))
(line-number-at-pos)
nil))))
(defun indentation-forward-to-next-sibling ()
(interactive)
(let ((saved-column (current-column)))
(forward-line (- (indentation-get-next-sibling-line) (line-number-at-pos)))
(move-to-column saved-column)))
Adecuadamente generalizado (adelante / atrás / arriba / abajo), lo que estoy usando se parece a lo siguiente actualmente:
(defun indentation-get-next-good-line (direction skip good)
"Moving in direction `direction', and skipping over blank lines and lines that
satisfy relation `skip' between their indentation and the original indentation,
finds the first line whose indentation satisfies predicate `good'."
(let ((starting-indentation (current-indentation))
(lines-moved direction))
(save-excursion
(while (and (zerop (forward-line direction))
(or (eolp) ; Skip past blank lines and other skip lines
(funcall skip (current-indentation) starting-indentation)))
(setq lines-moved (+ lines-moved direction)))
;; Now we can't go further. Which case is it?
(if (and
(not (eobp))
(not (bobp))
(funcall good (current-indentation) starting-indentation))
lines-moved
nil))))
(defun indentation-get-next-sibling-line ()
"The line number of the next sibling, if any."
(indentation-get-next-good-line 1 '> '=))
(defun indentation-get-previous-sibling-line ()
"The line number of the previous sibling, if any"
(indentation-get-next-good-line -1 '> '=))
(defun indentation-get-parent-line ()
"The line number of the parent, if any."
(indentation-get-next-good-line -1 '>= '<))
(defun indentation-get-child-line ()
"The line number of the first child, if any."
(indentation-get-next-good-line +1 'ignore '>))
(defun indentation-move-to-line (func preserve-column name)
"Move the number of lines given by func. If not possible, use `name' to say so."
(let ((saved-column (current-column))
(lines-to-move-by (funcall func)))
(if lines-to-move-by
(progn
(forward-line lines-to-move-by)
(move-to-column (if preserve-column
saved-column
(current-indentation))))
(message "No %s to move to." name))))
(defun indentation-forward-to-next-sibling ()
"Move to the next sibling if any, retaining column position."
(interactive "@")
(indentation-move-to-line 'indentation-get-next-sibling-line t "next sibling"))
(defun indentation-backward-to-previous-sibling ()
"Move to the previous sibling if any, retaining column position."
(interactive "@")
(indentation-move-to-line 'indentation-get-previous-sibling-line t "previous sibling"))
(defun indentation-up-to-parent ()
"Move to the parent line if any."
(interactive "@")
(indentation-move-to-line 'indentation-get-parent-line nil "parent"))
(defun indentation-down-to-child ()
"Move to the first child line if any."
(interactive "@")
(indentation-move-to-line 'indentation-get-child-line nil "child"))
Todavía hay algo más de funcionalidad deseable, y mirar outline.el
y reimplementar algo de eso puede ayudar, pero estoy contento con esto por ahora, para mis propósitos.
set-selective-display
Te acerca a lo que necesitas?