Org Mode 101 Basics

기본

Headlines

Global & local cycling

TAB (org-cycle)

S-TAB (org-global-cycle)

Structure Editing

Promote & demote

M-LEFT (org-do-promote)

M-RIGHT (org-do-demote)

M-UP (org-move-subtree-up)

M-DOWN (org-move-subtree-down)

Copy, cut & paste

C-c C-x C-w (org-cut-subtree)

C-c C-x M-w (org-copy-subtree)

C-c C-x C-y (org-paste-subtree)

Insert

M-RET (org-meta-return)

C-RET (org-insert-heading-respect-content)

Others

C-c C-w (org-refile)

ToDo

S-RIGHT S-LEFT

C-c C-t (org-todo)

M-S-RET (org-insert-todo-heading)

C-S-RET (org-insert-todo-heading-respect-content)

More Keyword

#+TODO: TODO(t) | DONE(d)
#+TODO: REPORT(r) BUG(b) KNOWNCAUSE(k) | FIXED(f)
#+TODO: | CANCELED(c)

C-c C-c 로 적용

Schedule, deadline & agenda

C-c [ (org-agenda-file-to-front)
현재 파일을 일정 파일 목록에 추가

C-c C-s (org-schedule)

C-c C-d (org-deadline)

M-x org-agenda

Agenda view

S-f
Follow mode

f
Move forward

b
Move backward

Repeating tasks

SCHEDULED: <2024-07-18 화 +1w>
Done으로 바꾸면 현재 스케줄 기준 일주일 후 스케줄로 갱신

SCHEDULED: <2024-07-18 화 ++1w>
Done으로 바꾸면 현재 시점의 다음 주 스케줄과 동일한 요일의 스케줄로 갱신

SCHEDULED: <2024-07-18 화 .+1w>
Done으로 바꾸면 오늘 날짜 기준 7일 이후의 스케줄로 갱신

Checklists

* count checked items [1/2]
- [ ] check it
- [X] check it

* completion [66%]
- [X] do this
- [X] do that
- [ ] done

M-S-RET (org-insert-todo-heading)
다음 줄에 새로운 Checkbox 추가

C-c C-c (org-toggle-checkbox)

Tags

#+TAGS: @work @home @tennisclub
#+TAGS: laptop car pc sailboat

C-c C-q (org-set-tags-command)

Customized agenda views

특정 키워드 혹은 태그를 골라서 볼 수 있다

Drawers

:DRAWERNAME:
contents
:END:

Logbook

C-c C-z (org-agenda-add-note)

Options/Customize Emacs/Specific option
org-log-into-drawer
커스터마이즈 옵션을 적용하면 log 작성 시 drawer을 자동으로 생성하여 정리해준다.


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *