我想设置一个键绑定将日期插入缓冲区。我在.emacs文件中编写了以下lisp。以日期为例:
;;put the date (global-set-key (kbd "C-c C-d") (shell-command "date" (current-buffer)) )
当我使用其他命令(如下一行)时,键绑定工作正常,但是当.emacs被读取时,shell命令将把它放入* scratch *缓冲区中。
也许我需要使用shell-command-on-region。