조직 헤드 라인 본문의 시작 또는 끝으로 가장 효율적으로 탐색하는 방법은 무엇입니까?


9

하나의 조직 모드 헤드 라인 시작에서 다른 키로 빠른 키를 사용하여 쉽게 탐색 할 수 있습니다 .

이제 제목이 시작되고 TODO 키워드 바로 다음에 본문에 추가하고 싶다고 가정합니다. 그럼 M-f Space내가 가고 싶은 곳으로 데려다 줄거야. TODO 키워드가 없으면 M-f M-b입니다.

헤드 라인 텍스트 의 끝까지 가고 싶다면 더 까다 롭습니다. 마지막에 키워드가없고 제목 아래에 접힌 텍스트가 숨겨져 있지 않은 경우 다음과 같이 쉽습니다 C-e. 그러나 거의 그렇지 않습니다. 접힌 텍스트가 있지만 키워드가없는 경우 할 수 있습니다 C-e M-b. 그러나 접힌 헤드 라인 끝에 키워드 하나 또는 두 개 있으면 나 자신이 타이핑을하는 것을 알게 될 것입니다 C-e M-b M-b M-b M-f. 키워드가 두 개 이상이면 더 나빠집니다.

뛰어 다니면서 여러 헤드 라인을 차례 차례 편집 할 때, 생각해야 할 부분이 많으며 실제로 전체 흐름을 망칠 수 있습니다. 이상적으로 내가하고 싶은 재 정의 se속도 키는 저를 얻기 위해 정확히 나는이 모든 경우에, 가고 싶어.

이 문제에 대한 기존 솔루션을 본 사람이 있습니까? 내 elisp 기술은 최소한이며 스스로 해결하는 것이 어려울 것입니다.


2
제목이 한 문장이라면 (대부분의 경우에 맞을 것이라고 생각합니다) M-e문장의 끝으로 이동할 수 있습니다 .
wvxvw

답변:


9

해결책

org-special-ctrl-a/e변수를 로 설정해야합니다 t.


선적 서류 비치

Non-nil means `C-a' and `C-e' behave specially in headlines and items.

When t, `C-a' will bring back the cursor to the beginning of the
headline text, i.e. after the stars and after a possible TODO
keyword.  In an item, this will be the position after bullet and
check-box, if any.  When the cursor is already at that position,
another `C-a' will bring it to the beginning of the line.

`C-e' will jump to the end of the headline, ignoring the presence
of tags in the headline.  A second `C-e' will then jump to the
true end of the line, after any tags.  This also means that, when
this variable is non-nil, `C-e' also will never jump beyond the
end of the heading of a folded section, i.e. not after the
ellipses.

When set to the symbol `reversed', the first `C-a' or `C-e' works
normally, going to the true line boundary first.  Only a directly
following, identical keypress will bring the cursor to the
special positions.

This may also be a cons cell where the behavior for `C-a' and
`C-e' is set separately.

아래는 평가입니다

(setq org-special-ctrl-a/e t)

(1) 초기 상태 (▮는 점을 나타냄)

* TODO ab▮c                                                        :test:

(2) 처음에 C-a

* TODO ▮abc                                                        :test:

(3) 두 번째 후 C-a

▮* TODO abc                                                        :test:

(4) 처음에 C-e

* TODO abc▮                                                        :test:

(5) 두 번째 후 C-e

* TODO abc                                                        :test:▮

관련 : 줄임표 후 포인트 조직 모드 하위 트리를 확장?

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.