組織モードでリンクを手動で設定するにはどうすればよいですか?
したがって、私は「オートリンクモード」を作成して、Tomboy Notesやnotes.vimなどのノート作成ソフトウェアの機能をエミュレートして、ノートのタイトルとなるテキストを自動的にリンクするようにしています。しかし、私はEmacsとElispにまったく新しいです。これは私がこれまで持ってきたものです(これは私がこれまで書いた最初のelispのようなもので、優しくしてください)。 ;; Set directory of files to search for *.org files (setq autolinks-mode-dir "~/Dropbox/Org/") ;; Get all .org files in this directory. (setq autolinks-mode-files (directory-files autolinks-mode-dir t "[.]org\\'")) ;; Convert it to a list of just the filenames, without paths. (setq autolinks-mode-files-bare (mapcar 'file-name-nondirectory autolinks-mode-files)) ;; Strip extensions (setq …