Analizując cztery dostępne obecnie odpowiedzi ( dwie na Super User i dwie na to pytanie), widzę następujące problemy:
- Te w SuperUser autorstwa Stefana i Peng Bai (poruszanie się linia po linii, patrząc na bieżące wcięcie) nie implementują zachowania aktualnej pozycji kolumny i przejścia do rodzica,
- Odpowiedź Dan (stosując ponowne przeszukiwanie do przodu, aby znaleźć następną linię z tego samego wcięcia) pomija linie z mniejszym wcięciem: nie wie, kiedy nie ma obok rodzeństwo, a więc można przenieść do czegoś, co nie jest rodzeństwo ale dziecko innego rodzica… może kolejnego „kuzyna”.
- Odpowiedź Gilles (za pomocą konturu-mode) nie zachowuje pozycję kolumny i to nie działa z linii z zerowym wcięcia ( „top-level” linie). Poza tym, patrząc na jego kod
outline.el
, i tak w zasadzie i tak przechodzi on linijka po linii ( outline-next-visible-heading
w naszym przypadku), ponieważ (prawie) wszystkie linie pasują do wyrażenia regularnego konspektu i liczą się jako „nagłówek”.
Tak więc, łącząc kilka pomysłów każdego z nich, mam następujące: iść naprzód linia po linii, przeskakując puste i bardziej wcięte linie. Jeśli masz równe wcięcie, jest to następne rodzeństwo. Podstawowy pomysł wygląda następująco:
(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)))
Odpowiednio uogólnione (do przodu / do tyłu / w górę / w dół) to, czego używam, wygląda następująco:
(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"))
Pożądana jest jeszcze większa funkcjonalność, a przeglądanie outline.el
i ponowne wdrażanie niektórych z nich może pomóc, ale na razie jestem zadowolony z tego, dla moich celów.
set-selective-display
się do tego, czego potrzebujesz?