随时快速插入你的信息.
;;Insertion of dates
;;Created 2008-05-16 by qingwu
(defun insert-date-sign ()
"Insert date and you string."
(interactive)
(insert (concat "Created " (format-time-string "%Y-%m-%d") " by qingwu")))
(global-set-key (kbd "C-c i") 'insert-date-sign)
阅读(560) | 评论(0) | 转发(0) |