해결책
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:▮
관련 : 줄임표 후 포인트 조직 모드 하위 트리를 확장?
M-e
문장의 끝으로 이동할 수 있습니다 .