在 emacs 组织模式上设置标签搜索的新快捷方式
setting new shortcut for tag search on emacs org-mode
这可能很简单,但我已经尝试了几天但没有成功。我有一个名为 :urgent: 的标签,我可以通过以下方式访问它:
C-c / m urgent
问题是,我如何创建一个快捷方式来完成它,比如说,f9?
(defun hello-world ()
"My doc-string."
(interactive)
(org-tags-view nil "urgent"))
(global-set-key [f9] 'hello-world)
;; or, use the following form instead of the one immediately above:
;; (define-key global-map [f9] 'hello-world)
这可能很简单,但我已经尝试了几天但没有成功。我有一个名为 :urgent: 的标签,我可以通过以下方式访问它:
C-c / m urgent
问题是,我如何创建一个快捷方式来完成它,比如说,f9?
(defun hello-world ()
"My doc-string."
(interactive)
(org-tags-view nil "urgent"))
(global-set-key [f9] 'hello-world)
;; or, use the following form instead of the one immediately above:
;; (define-key global-map [f9] 'hello-world)