
org-mode
마지막 업데이트 이후 메모 캡처 기능이 제대로 작동하지 않는 것 같습니다 . 현재 ELPA
. C-c c
(예: ) 을 누르면 org-capture
캡처 템플릿 목록이 표시되고 그 중 하나를 선택하여 실제로 메모를 입력할 수 있는 버퍼를 열 수 있습니다. 문제는 일단 작업이 끝나면 타격해도 C-c C-c
캡처 버퍼가 닫히지 않는다는 것입니다. 콘텐츠는 올바른 위치에 저장되지만 캡처를 시작한 위치로 돌아가지 않습니다. 버퍼 에서 *Messages*
다음 오류가 발생합니다.org-capture-finalize: Symbol's value as variable is void: org-bookmark-names-plist
이 문제의 디버깅을 어디서 시작해야 할지 모르겠습니다. 어떤 아이디어가 있나요?
나는 다음이 내가 가지고 있는 모든 관련 설정이라고 생각합니다.
;; Capture-org
(setq org-default-notes-file (concat org-directory "/notes.org"))
(define-key global-map "\C-cc" 'org-capture)
(setq org-capture-templates
(quote (("t" "todo" entry (file (concat org-directory "/gtd.org"))
"* TODO %?\n%U\n%a\n" :clock-in t :clock-resume t)
("n" "note" entry (file (concat org-directory "/gtd.org"))
"* %? :NOTE:\n%U\n%a\n" :clock-in t :clock-resume t)
("j" "Journal" entry (file+datetree (concat org-directory "/diary.org"))
"* %?\n%U\n" :clock-in t :clock-resume t)
("v" "Vocabulary" entry
(file+headline (concat org-directory "/vocab.org")
"Vocabulary")
"* %^{The word} :drill:\n:PROPERTIES:\n:Part-of-speech: %^{Part of speech|verb|noun|adj|adv}\n:END:\n %t\n %^{Extended word (may be empty)} \n** Answer \n%^{The definition}")
)))
답변1
ELPA 디렉토리에 있는 이전 버전과 현재 버전 사이에 충돌이 있었던 것 같습니다. 이전 버전을 제거하면 문제가 해결되었습니다.