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.
如何使用单次击键创建一个新的空缓冲区?我可以创建一个新缓冲区,C-x b然后输入一个名称。(我使用 ido 模式,所以如果我点击RET它会打开最近的缓冲区。)
C-x b
RET
我想要一个命令来使用单个键绑定打开一个新的无标题缓冲区,例如s-t.
s-t
(类似于new-tabAquamacs 中的命令。)
new-tab
正如 YoungFrog 指出的那样,只生成一个新缓冲区会更容易(当它存在时,它将自动获得一个附加到它的数字):
(defun new-buffer () (interactive) (switch-to-buffer (generate-new-buffer "buffer")) ) (global-set-key (kbd "\s-t") 'new-buffer)