Различия
Здесь показаны различия между двумя версиями данной страницы.
Предыдущая версия справа и слева Предыдущая версия Следующая версия | Предыдущая версия | ||
dev:other:efficientprog [2012/02/04 18:05] jamis7005 [Points] |
dev:other:efficientprog [2012/09/24 18:52] (текущий) jamis7005 [Eclipse] |
||
---|---|---|---|
Строка 16: | Строка 16: | ||
* use Ruby as alternative to bash | * use Ruby as alternative to bash | ||
- | ===== Eclipse ===== | + | Useful findings: |
- | * use shortcuts list (Ctrl+Shift+L) | + | * find and replace text in group of files:<code> |
- | * use Key Promoter plugin. Help-Install New Software -> http://update.mousefeed.com/ | + | find . -type f -exec sed -i "s/old_text/new_text/g" {} \;</code> |
- | * cool shortcuts:<code> | + | |
- | Ctrl-Shift-T Goto to class (use capitals) | + | |
- | Ctrl-Shift-R Goto to file | + | |
- | Ctrl-O Symbol list | + | |
- | Ctrl-J Incremental search | + | |
- | Ctrl-E Recently edited files | + | |
- | Alt-Shift-L Introduce variable | + | |
- | Alt-Shift-Up Escalating selection</code> | + | |
- | * [[http://www.prom-auto.ru/articles/eclipse/eclipse.keys.pdf|other shortcuts]] | + | |