在emacs org-mode

时间:2015-11-21 21:46:37

标签: emacs tags keyboard-shortcuts org-mode

这可能很简单,但我已经尝试了几天但没有成功。我有一个名为:urgent:的标签,我可以通过以下方式访问:

C-c / m urgent

问题是,我怎样才能创建一个快捷方式来完成它,比如f9?

1 个答案:

答案 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)