notepad ++ plugin do tipo “autotext”

3

Como parte do meu trabalho, eu regularmente coloco longas descrições de imóveis em um banco de dados. Eu os escrevo em N ++ e os colo na interface web da base. No entanto, eles são muito repetitivos e eu gostaria de facilitar a minha vida.

Eu estava pensando em algo assim. Por exemplo, eu digitaria opl e, assim que atingisse o espaço, ele seria substituído por open plan living room with kitchen . Então, existe um plugin para o Notepad ++ para fazer isso? Eu sei que tem autocompletar, mas isso funciona de forma um pouco diferente do que eu quero alcançar.

    
por avramov 12.05.2011 / 10:55

2 respostas

1

Talvez confira os recursos de preenchimento automático incorporados no Notepad ++ 5 e acima.

Notepad++ has autocompletion capabilities, allowing it to finish a word that you are typing by giving a list of possible options, or immediately inserting it when only one possibility is left (powered by the Scintilla component).

There are two types of auto completion:

The first one uses a list of well known keywords and provides a hint based on that and goes by the name Function Completion. It is triggered by selecting Edit->Auto-Completion->Function Completion or automatically when a certain amount of characters is typed (see also Preferences).

The second one retrieves all the words from the current file and provides hinting on that, named Word Completion. This is triggered by selecting Edit->Auto-Completion->Word Completion, or by entering a set number of characters (again, see Preferences). Word completion is the only type that can automatically finish a word without displaying a list of options first.

    
por 12.05.2011 / 20:59
1

Se você puder / quiser instalar outro programa, tente o AutoHotkey ( link ), que pode fazer a substituição de palavra-chave que você descreve e mais, não apenas no Notepad ++, mas na maioria das outras aplicações.

    
por 21.02.2012 / 15:05