Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこれを.emacsファイルに入れました:
(setq org-default-notes-file (concat org-directory "/notes.org")) (define-key global-map "\C-cc" 'org-capture)
しかし、emacsを開くと、これが発生します。
変数としてのシンボルの値はvoid:org-directoryです
どうすればこれを解決できますか?
最初に次のorg-directoryように設定する必要があり(setq org-directory "folder")ます。そうしないと、未定義になり、エラーが発生します
org-directory
(setq org-directory "folder")