如何将 Dired 模式缓冲区粘贴到 Emacs 中的单独框架?
我希望通过 dired 在单独的框架中进行文件导航,但所有文件都在另一个框架中打开。那么如何将直接模式缓冲区粘贴到独立帧上呢?谢谢。
我对不使用额外软件包的解决方案感兴趣。
I want files navigation via dired to be made in a separate frame but all files to be open in another frame. So how can I stick dired-mode buffers to a standalone-frame? Thanks.
I am interested in solution w/o using extra-packages.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将类似的内容放入您的初始化文件 (
.emacs
) 中:这使得 Dired 的窗口是专用的,这意味着它不能被另一个缓冲区重用。您可以对其他 Dired 命令执行相同的操作 - 例如
dired-other-window
。Put something like this in your init file (
.emacs
):That makes Dired's window be dedicated, meaning that it cannot be reused for another buffer. You can do the same thing for other Dired commands -- e.g.
dired-other-window
.