Emacs 将缓冲区合并为一个而不使用 Cx 1 键绑定
您能否建议 emacs 中的按键绑定来执行以下操作:
步骤:例如 1)我使用命令 Cx 2 将所有文本编辑器区域分为 2 部分 2)然后我用 Cx 3 将第一个分成另外 2 块 3)我怎样才能制作第一块(在本例中为缓冲区)
请参阅附图以更好地描述我想要的内容图片http://img.skitch.com/20090922-ra1394bnrbsigrdgm5uycjtrds.jpg
Could you suggest the key bind in emacs to do the following:
Steps: for example
1) I divided all text editor area into 2 pieces with command C-x 2
2) Then I divided first one on another 2 pieces with C-x 3
3) How can I make the first piece (a buffer in this case)
See attached image for better description of what I want getimage http://img.skitch.com/20090922-ra1394bnrbsigrdgm5uycjtrds.jpg
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果我理解正确的话,您想在要关闭的窗口中 Cx 0 。
If i understand you correctly you want to C-x 0 in the window you want to close.
交互式解决方案是将光标放在底部缓冲区并点击 Cx 0。
The interactive solution is to put the cursor in the bottom buffer and hit C-x 0.
如果您喜欢使用鼠标,另一种选择是右键单击要关闭的缓冲区的模型行(显示
helpers.py代码> 在你的屏幕截图中)。唯一需要注意的是,不要单击文件名,因为默认情况下,右键单击文件名会绑定切换缓冲区。
the other option if you enjoy using the mouse is to right click on the modeline of the buffer you want to close (the one which shows
helpers.py
in your screenshot). The only thing which you have to note is that you should not click on the file name, as right click on file name is bind to switch buffer by default.Cx 0 成功了
C-x 0 did the trick