Emacs dired 模式和 Isearch
我最近发现了 Emacs 的 dired 模式的一些强大功能和易用性。 但在 Krusader 中,我只是开始按文件夹/文件的第一个字母,然后按 Enter,所以我深入,然后搜索另一个文件夹,聚焦,按 Enter 直到找到我应该打开的文件。
我现在如何在 Dired 中执行此操作:
- 按 Ctrl+S 进行 isearch
- 按查找文件夹的字母
- 按 Enter(或其他组合)一次以逃避 I-search
- 按 Enter 输入文件夹或打开文件(用于打开文件我知道我有其他字母也是如此)
我真的需要让这变得更容易。 所以我想要的主要事情是当我按一次回车键时:
- 转义Isearch
- 输入文件夹(或打开文件)
当然第二个主要事情默认情况下是BE在某些带有 dired 的 isearch 模式下,只需通过键入进行导航,并且仅当按 ESC 时才处于单个字母具有命令含义的 dired 模式。我不确定这第二件主要事情是否容易实现或推荐用于 dired。 但是主要的事情我相信应该可以通过一些智能的 Lisp 行来完成,我不知道:)
谢谢你们,
Stefan
I recently discovered some of the power and easy of use of dired mode of Emacs.
But in Krusader, I just begin press first letter(s) of folder/file, and press enter, and so I go deep, then search for another folder, focus, press enter until I found the file I should open.
How I do it in dired now:
- press Ctrl+S for isearch
- press the letters for finding folder
- press enter (or some other combination) once to escape I-search
- press enter to enter folder or open file (for opening file I know I have other letters as well)
I really need to make this easier.
So the main thing I want is when I press enter once, to:
- escape Isearch
- enter folder (or open file)
Of course the second main thing would be to BE by default in some isearch mode with dired, to just navigate by typing, and only when press ESC to be in that dired mode where single letters have commands meanings. I'm not sure if this second main thing is easy possible or recommended for dired.
But the main thing I believe should be doable with a few smart Lisp lines, which I don't know :)
Thank you guys,
Stefan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是完成主要事情的一种方法:
Here's one way to do the main thing:
对于第二个主要事情:
For the second main thing:
借助 madalu 的答案,您可以通过将 isearches 串在一起来接近第二个主要内容:
Piggy-backing on madalu's answer, you can get close to the second main thing by stringing isearches together: