我希望以类似在 OSX 中的 Textmate 中按 的方式搜索文件夹中的文件CTRL+Shift f
。
如何在 Gedit 中搜索文件夹中的文件?
答案1
通过选择单词来设置搜索
1) open Gedit and enable the "External tools" plugin in Edit >> Preferences >> Plugin 2) don't close the dialog but select the plugin and click "Configure plugin" instead 3) let's add a new tool with the following properties Name : Find in files (or whatever you want) Description : Find in files (or whatever you want) Accelerator (the keybord shortcut) : type <Control><Shift>f (or whatever you want - be sure it's not already used) Command : Code: #!/bin/sh xargs gnome-search-tool --contains Input : current selection Output: bottom panel Scope: all documents
但此功能仅在选择某个单词时才有效
获得与 TextMate 类似的文件搜索功能
将输入设置为当前文档但其他情况如上所述。