OK, so editing JSPs is slow (it's worse in Eclipse).
This will help a little:
Settings -> Editor. In the Virtual Space box, uncheck Allow placement of caret after end of line.
Now edit a JSP, and click somewhere far to the right, well after the last char: your cursor will appear right after the last char!
That's better than in the white space, from which you have to jerkily left-arrow repeatedly to get to the same place.
Friday, September 29, 2006
Tired of having to turn linked Ant tasks on and off, depending on what you are doing?
So am I.
Vote for my issue:
http://www.jetbrains.net/jira/browse/IDEA-8700
So am I.
Vote for my issue:
http://www.jetbrains.net/jira/browse/IDEA-8700
Tired of having to close panels?
For example, you double-click a line in the Find panel, and the cursor jumps to the main text window -- but the Find panel is still hogging half the screen, and you have to close it manually (or do Ctrl-F12)?
Click the Undock icon of an open panel (top right corner, hover over the icons for the tooltip that says "Undock"). Now, whenever the focus leaves the panel, it will automatically close.
To reopen, press Alt and the underlined number in the panel's tab.
For example, you double-click a line in the Find panel, and the cursor jumps to the main text window -- but the Find panel is still hogging half the screen, and you have to close it manually (or do Ctrl-F12)?
Click the Undock icon of an open panel (top right corner, hover over the icons for the tooltip that says "Undock"). Now, whenever the focus leaves the panel, it will automatically close.
To reopen, press Alt and the underlined number in the panel's tab.
Highlight all occurrences of a variable or method: do Ctrl+Shift+F7 while the cursor is in it.
To turn off the highlighting, press Esc.
This feature actually has two "modes".
If you press Alt-F7 with:
Why? Since highlighted text accumulates until you hit "Esc" to clear all highlighted text from the buffer, IntelliJ uses different colors to distinguish between "highlight this symbol in scope" and "highlight any matching text in file" modes.
Both of these modes will put markers in the right-hand gutter to to show you at a glance wherever these occurrences may be.
To turn off the highlighting, press Esc.
This feature actually has two "modes".
If you press Alt-F7 with:
- a method, class, or variable unselected, cursor in it:
- then all occurrences of in the current scope are highlighted.
- If a variable, then any initializations are highlighted in a different color (so you can see where the variable's value is getting set).
- method, class,variable, String literal, or xml element/attribute etc selected :
- any occurrence of that text in the file, regardless of scope, is highlighted, even text in comment blocks or String literals.
Why? Since highlighted text accumulates until you hit "Esc" to clear all highlighted text from the buffer, IntelliJ uses different colors to distinguish between "highlight this symbol in scope" and "highlight any matching text in file" modes.
Both of these modes will put markers in the right-hand gutter to to show you at a glance wherever these occurrences may be.
Alt-F7 shows occurrences in the whole project, but you just want them in the current file? Or package? Or...? Note the Scope menu in the Alt-F7 dialog: just choose your search scope.
For a single file, Ctrl-F followed by Alt-A (find all) is usually faster: it will show a nice list of all occurrences.
For a single file, Ctrl-F followed by Alt-A (find all) is usually faster: it will show a nice list of all occurrences.
Thursday, September 28, 2006
Subscribe to:
Posts (Atom)