我发现 org-clock-out 和 org-toggle-ordered-property 具有相同的键绑定 Cc Cx o。并且还与 org-clock-in 和 org-insert-columns-dblock,相同的 Cc Cx i。
有时这真的搞砸了。如何让它不会误会我的意思?
我真的不知道有序属性是什么,但我正在使用时钟功能。我不喜欢多键和弦,所以我org-speed-commands-user
为此目的使用:
(setq org-speed-commands-user
'(("i" . org-clock-in)
("o" . org-clock-out)))
现在要进入一个标题,我以 . 开头C-a。这是 org speed 命令生效的地方:任何单个字母或数字都可以绑定到命令。
我使用这段代码快速到达组织速度命令激活的位置:
(define-key org-mode-map (kbd "C-a")
(lambda()(interactive)
(if (looking-at "^[^*]")
(re-search-backward "^*")
(org-beginning-of-line))))
另外,不要忘记您可以使用 / 来签入/签出I议程O。
org-clock-in/out
areC-C C-x C-i
和C-c C-x-C-o
分别的标准键绑定。
键绑定不重叠(尽管它们相似)。
如果它们在您启动 Emacs 时重叠,请检查您的~/.emacs
/~/.emacs.d/init.el
以确保您没有更改绑定。