Изучая четыре доступных ответа ( два на Супер пользователя и два на этот вопрос), я вижу следующие проблемы:
- Те , что в SuperUser от Stefan и Peng Bai (перемещаясь построчно, глядя на текущий отступ), не реализуют сохранение текущей позиции столбца и перемещение вверх к родителю,
- Ответ Дан ( с использованием повторного поиска вперед , чтобы найти следующую строку с тем же отступом) скачет по линиям с меньшим отступом: он не знает , когда нет рядом родной брата, и , следовательно , может двигаться к чему - то , что не является родственным но ребенок от другого родителя ... возможно, от "двоюродного брата".
- Ответ на Жиль ( с использованием контура-режим) не сохраняет позицию столбца и она не работает со строками с нулевым отступом ( «верхнего уровня» линии). Кроме того, если посмотреть на его код
outline.el
, он все равно в основном идет построчно (используя outline-next-visible-heading
) в нашем случае, так как (почти) все строки будут соответствовать регулярному выражению структуры и считаться «заголовком».
Итак, объединяя некоторые идеи каждого из них, у меня есть следующее: продвигаться вперед строка за строкой, пропуская пустые и более пропущенные строки. Если у вас одинаковый отступ, то это следующий брат. Основная идея выглядит так:
(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)))
Соответственно обобщенный (вперед / назад / вверх / вниз), что я использую, выглядит следующим образом:
(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"))
По-прежнему желательна еще некоторая функциональность, и outline.el
может помочь рассмотрение и переопределение некоторых из них, но сейчас я доволен этим для моих целей.
set-selective-display
получить Вас близко к тому , что вам нужно?