Pesquisar arquivos na pasta no Gedit

1

Eu gostaria de pesquisar os arquivos na pasta da mesma forma que você pode fazer no Textmate no OSX pressionando CTRL+Shift f .

Como você pode procurar arquivos na pasta no Gedit?

    
por Léo Léopold Hertz 준영 07.07.2015 / 10:48

1 resposta

0

Definir pesquisa por seleção de uma palavra visualmente

O tópico Como fazer: pesquisar em arquivos com o GEdit diz

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

mas esta funcionalidade só funciona se alguma palavra for selecionada dando

Para obter pesquisa semelhante em arquivos como no TextMate

Defina Entrada para Documento atual , mas de outra forma como acima.

    
por 28.07.2015 / 22:30