Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想像在 org-mode ( C-c .) 中一样在 emacs 缓冲区中插入日期,而在 org 以外的模式下。有一个次要模式吗?日历不能满足我的需求,例如,我可以每天“+1”。谢谢。
C-c .
没有次要模式,但您可以这样做:
(global-set-key (kbd "C-c .") 'org-time-stamp)
或者以您想要的任何模式/键盘映射定义键。请注意,此键绑定可能与其他模式中的键绑定冲突。为用户保留的键绑定是C-c x(x 任何小写或大写字母)。
x