How to clear the editor from the search results but still keep view in Eclipse - eclipse

Right now Eclipse clears the editors highlights and from the view. Is it possible to clean the editor and still the results handy?

Go to Window->Preferences->General->Editors->Text Editors->Annotations. In annotations types select "Search results" type. Deselect "Vertical ruler" and "Text as" check box.

Related

How to get rid of DBEAVER error icon and highlighting?

How can I get rid of these error icons and query highlighting?
Steps below:
Right click the error marker and select "Preferences"
Expand "SQL Editor" and go to "Code Editor", deselect "Show problem markers" under the "Miscellaneous" category
I prefer to show the error highlighting as a debugging aid. Often though, it sticks around long after it's no longer useful. To clear the highlighting in this case you can right-click on "Errors" in the problems dialog and select Delete.

Eclipse IDE - What are breadcrumbs, and how do I disable them? [duplicate]

How can I disable the Java editor breadcrumb in Eclipse?
If you are referring to the breadcrumbs in the help file of a RCP application, there is only a manual way to do it.
Since Ganymede 3.4M5:
Michael Borgwardt mentions the toolbar icon
Slava Semushin provides a native shortcut based on Ctrl+3+bread, which points directly to the Toggle Java Editor Breadcrumb option.
Shachi reminds us below that you can right-click on any icon on the breadcrumb, and select the entry named "Hide Breadcrumb".
Original answer (manual way, through key mapping)
Find the file org.eclipse.help.webapp\advanced\breadcrumbs.css and replace its contents with.
.help_breadcrumbs {
display: none;
}
For the Java Editor breadcrumb, you need to assign a shortcut to the "Toggle Java Editor Breadcrumb" command (I have tested Alt+B, for instance)
That shortcut will make the breadcrumb bar appear/disappear at will.
With the editor window focussed, look for this icon in your toolbar:
And click on it. That's all. The icon is present by default, but can be deactivated, in which case you have to activated as in MvanGeest's answer.
Another way which works for me at Eclipse Indigo (3.7): press Ctrl+3 and type bread, after that click on item Toggle Java Editor Breadcrumb.
RightClick on any icon on breadcrumb.
There is an option named HIDE BREADCRUMB.
Click it and you are done. :D
Look for this icon in the toolbar:
This button toggles the Breadcrumb view on/off.
(I'm using Eclipse 3.7, and it's there by default)
Here it is :
In the toolbar, toggle bread crumb option.
Something like http://loadcontext.blogspot.com/2008/08/eclipse-34-breadcrumbs-hide-and-show.html?
Customize Perspective, choose the
Commands tab. In the Available command
group, choose Java Editor
Presentation. The Toolbar details
shows the button for Toggle
Breadcrumbs, which looks like a folder
with a C in a circle with a black
triangle on top of it.
Despite my absolute lack of experience with Eclipse, I suppose this setting must appear in other Presentation items too. After the button's enabled, all you have to do is click it. Or not?
Change property breadcrumb.org.eclipse.jdt.ui.JavaPerspective from true to false
in your org.eclipse.jdt.ui.prefs file.
In Juno: type 'Bread' and select 'Toggle Java Editor Breadcrumb'
It very simple just right click in your class editor then select bread crumb or directly right click in top of your class in tool bar then select hide breadcrumb then its done.
When you see the BreadCrumb toolbar, right-click on the green class icon and then from the menu options click on Hide Breadcrumb.

"Replace all" in project / selection not working?

In Netbeans 7.2, after selecting packages or a project and opening the dialog Edit->Replace or Edit->Replace in projects, I can't find a button or option to replace all occurrences. The only way I found is to open a file, select Edit->Replace and then "Replace all", but this obviously applies only to the current file.
How to find & replace in a custom selection over files, packages, projects, ...?
Edit
The "Search Results" window looks like this after Edit->Replace in projects...->Find:
There is no button or menu to do the replacement.
If you use Edit -> Replace (in Projects) a Search Results window appears, listing all matches available for your selection.
But now you have to click on Replace xy matches for completion.
Note that the Search Results window must be large enough so that all buttons show up!

How do I get rid of the Eclipse Find/Replace Bar

For searching a document, I like using the floating Find/Replace window that pops up. Lately, however, hitting command-F pulls up this Find/Replace bar at the bottom of the editor window. I suppose I wouldn't mind it so much, except instead of selecting the text to search it puts the insertion point after whatever I've searched for before. Very annoying. Clicking on the magnifying glass pops up the other Find/Replace dialog.
How can I get the normal dialog to pop-up by default?
I should add that for some reason search is no longer working in Preferences, so I can no longer just search for "Find" to locate the setting I might need to change. So you'll have to give me the exact location.
A little more experimenting reveals that this is PyDev-specific behavior but I still can't find the setting that needs changing.
type Ctrl-Shift-L twice brings up Preferences window.
In Preferences window: type 'find bar' in the search field. This finds 'Find bar' in category 'Aptana Studio' (assuming you have Aptana Studio included in Eclipse). Click this entry 'Find Bar' to bring up the 'Find Bar' settings page.
On the Find Bar settings page uncheck 'Use custom find bar on Aptana editors' See shot.
This did the trick for me!
I added a feature request to the Pydev tracker for a setting to suppress the find bar: https://sourceforge.net/tracker/?func=detail&aid=3097964&group_id=85796&atid=577332
Could you make sure the 'command-f' is binding with menu item 'edit' - 'find/replace...'?
Might other plug-in hook the key binding.
And another way is using 'spy' to see which one contribute it. Focus on the search widget, then click 'alt - shift - f1'.

How do I activate word wrapping in text editor in Aptana Studio?

How do I activate line wrapping in text editor in Aptana Studio?
I'm interested about wrapping in view mode (in order to not have to do horizontal scrolling).
Tried right-clicking within the editor and selecting ‘word wrap’ from the context menu?
On Main Menu click "Window" choose "Preferences". In left-side list, click "Aptana Studio". An alphabetical list on right side will show. Select "Editors" then check "Enable word wrap (requires restart)".
It seems to work on the latest version of Aptana as well. Here are some screenshots of where you can find such option.
I'm using Aptana Studio 3 and you can right click anywhere in the code and select Word Wrap which should be the second last option.
I'm using Aptana Studio 3, build: 3.4.2 and found that 'word wrap' can be change with in editor from context menu, BUT only if the mouse are on line number field! If the mouse is on text editor the option 'word wrap' missing. This change only setting for current opened file. It will be good to change default option !
Window > Preferences > Aptana > Editors...
Actually click on the word "Editors", you don't need to click the "+" symbol next to it. Once that loads, go to the "Advanced" tab, and you should see the option you're looking for to enable word wrap.
Found that here.
http://forums.aptana.com/viewtopic.php?f=14&t=7482
Once you restart, you should be good to go.