这可能很简单,但我已经尝试了几天但没有成功。我有一个名为:urgent:的标签,我可以通过以下方式访问:
C-c / m urgent
问题是,我怎样才能创建一个快捷方式来完成它,比如f9?
答案 0 :(得分:1)
(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)