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.
キャプチャのターゲットに行くカスタム関数を作成しました:
(defun inbox-goto() (interactive) (org-capture-goto-target "c"))
を呼び出すとうまく機能org-captureしますが、再起動直後に使用しようとすると、「シンボルの関数定義が無効です: org-capture-goto-target」と表示されます。
org-capture
あなたの問題は、自動ロードされているがそうではないことだと確信してorg-captureいますorg-capture-goto-target。これを修正する最も簡単な方法は、おそらくrequireの定義にa を挿入することinbox-gotoです。
org-capture-goto-target
require
inbox-goto
(defun inbox-goto () (interactive) (require 'org-capture) (org-capture-goto-target "c"))