- 论坛徽章:
- 0
|
原帖由 rion10 于 2007-4-8 19:00 发表
1. 如何将Undo和Redo的快捷键分开,现在好像是通用C-x u, 如果没有undo buffer了,再按C-x u会变成Redo,很容易混淆。
2. 标题栏 -uu-:---F1 temp.c , 如果文件改动了,会变成 -uu-:**-F1 temp.c, 请问---三 ...
1. 你可以试试"redo.el"这个扩展:
;; The redo/undo system is different in two ways:
;; 1. The undo/redo command chain is only broken by a buffer
;; modification. You can move around the buffer or switch
;; buffers and still come back and do more undos or redos.
;; 2. The `redo' command rescinds the most recent undo without
;; recording the change as a _new_ buffer change. It
;; completely reverses the effect of the undo, which
;; includes making the chain of buffer modification records
;; shorter by one, to counteract the effect of the undo
;; command making the record list longer by one.
3. 键设置貌似没问题,可能是no window下term的问题,导致C-f12和f12的按键代码一样了(我这边就是这样 ) |
|