如何在工作区中快速查找文件/在缓冲区之间切换等。在日食中?
我正在寻找类似 Textmate 在 Command-T 上的模糊搜索的东西, FuzzyFinder在 Vim 中,或在 Emacs 中 Ido。它存在吗?如果不是,您更喜欢怎样做?
I am looking for something like Textmate's fuzzy search on Command-T, FuzzyFinder in Vim, or Ido in Emacs. Does it exist? If no, how do you prefer to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
CTRL + SHIFT + r 将在项目中的任何位置搜索每个“资源”(文件)
CTRL + SHIFT + e 将搜索特定的打开文件(即您的缓冲区)
CTRL + SHIFT + < kbd>PageUp/PageDown 将导航到下一个/上一个打开的缓冲区
CTRL + SHIFT + Left/Right 将向后导航/在浏览历史记录中前进
(例如,如果您从选项卡 1 转到选项卡 5,再转到选项卡 2,然后按 CTRL+SHIFT+Left,您将返回到选项卡 5;然后您可以按 < kbd>CTRL+SHIFT+向左 返回选项卡 1,或 ...+向右返回选项卡 2)
希望有所帮助。
CTRL + SHIFT + r will search each for any "Resource" (file), anywhere in your project
CTRL + SHIFT + e will search for a specific open file (ie. your buffers)
CTRL + SHIFT + PageUp/PageDown will navigate to the next/previous open buffer
CTRL + SHIFT + Left/Right will navigate backward/forward in your browsing history
(eg. if you went from tab 1 to tab 5 to tab 2 and then hit CTRL+SHIFT+Left, you'd go back to tab 5; you could then hit CTRL+SHIFT+Left to go back to tab 1, or ...+Right to go back to tab 2)
Hope that helps.
Ctrl+3
提供跨编辑器、命令和首选项的上下文文本搜索。我最近才发现这个 - 不确定它是否是 Eclipse 3.5 的一项新功能。Ctrl+3
gives contextual text search across editors, commands and preferences. I only recently discovered this one - not sure if it was a new feature with Eclipse 3.5.您可以使用 GotoFile 插件。键入 Ctrl+Alt+N 即可使用。与 Eclipse Juno 配合使用。
You can use GotoFile plugin. Type Ctrl+Alt+N to use. Works with Eclipse Juno.
Ctrl+Shift+R
适用于文件,< code>Ctrl+Shift+T 对于类型。 仍在寻找缓冲区的答案。Ctrl+Shift+R
works for files,Ctrl+Shift+T
for types. Still looking for an answer for buffers.