I'm in Eclipse writing Java. I come from Visual Studio with Resharper writing C#.
When Content Assist comes up, I see all the private members of a class, even though I'm not editing that class. Is there a way I can turn that off?
It's really distracting.
...
I'm using Eclipse Ganymede (version 3.4.1) with a C++ project. Is there some way to filter the content assist list to only show methods and fields that are available in the current context?
If not, why not? Is there ever a situation where I would want to access the private fields, etc. in an object?
...
I'm using Eclipse 3.5.0, and have imported a maven project using the import maven project from SCM wizard (M2 plugin).
I have a jar file as a dependency in my pom. and inside the jar is a complicated schema - with quite a number of XSD's. But the content assist doesn't seem to pick up the schema at all, nor a number of other classes i...
In my Eclipse Preferences -> Java -> Editor -> Content Assist -> Advanced settings, I see the following:
Java Non-Type Proposals
Java Proposals
Java Proposals (Task-focused)
Java Type Proposals
JPA Proposals (is always empty for me)
PDE API Tools Proposals (gets skipped when checked in the Content-Assist Cycling settings)
SWT Template ...
I am writing eclipse plugin to add better support for properties files. One of the missing piece is content-assist ... I'd like to show matching properties keys when user starts typing some string and presses content assist key.
For example, when I have property hello = world in one of my properties files, and I start typing format("hel...
Hello everyone,
I developp jsf xhtml pages with facelets, and i always had code assist for all the taglibs i declared i my xhtml root element (h, f etc..)
But, since, like 30 minutes, when i ctrl+space i only have regular html and ui:* proposals.
I didn't change anything. It just broke, no error message, nothing.
I searched the web, ...
Hi,
I am writing a custom editor in a plugin, and I developed it in Galileo. Now I'm trying to run it in Ganymede, but content assist doesn't work. There is no error, just nothing happens when I type "ctrl+space".
The way I'm doing it is by providing a custom Configuration class that extends SourceViewerConfiguration, overriding public...
Is there any way to persuade Eclipse to use tabs instead of spaces for indenting its built-in Java content assist proposals (such as when creating an empty method which overrides a method in the parent class)?
The only setting I could find that looked relevant is in Windows/Preferences/General/Editors/Text Editors/Insert spaces for tabs...
There's a Google Maps API v3 Visual Studio Intellisense Helper, which presumably works great for Visual Studio, but Aptana (based on Eclipse) uses a different JavaScript documentation format - ScriptDoc (.sdoc files). ScriptDoc is also the name of a VS utility to convert JS files with Intellisense comments into XML, just to confuse thing...
Does anyone know of a project that will allow the editing of a language (any language) within a web-page itself (via HTML-5) with content assist (ctrl+space)?
CLARIFICATION
I'm not looking for a HTML5 editor (I'm aware of many), I'm looking for a language editor written in HTML5/Javascript that runs within a browser.
...
Hi all,
I got a problem with my content assist of html attributes in Eclipse Helios.
When I do something like
<div style="|"></div>
and hit ctrl+space, normally the content assist for the style attribute appears. This works fine for *.html and *.shtml files.
But as soon as I rename the file to phtml, the content assist just fails a...
While typing some Java code, I hit the dot/member operator (.) as in the dot inside ObjectName.methodName and got this error in a popup in Eclipse:
The `org.elcipse.jst.ws.jaxws.ui.jaxwsjavacompletioncomputer`
proposal computer from the `org.eclipse.jst.ws.jaxws.ui`
plug-in did not complete normally.
A second popup immediately follo...
Hi all,
I'm using eclipse helios cdt7.0. The content assist works regarding e.g. structs but in case of enums, the full project index (functions, all kind of enums, etc.) is proposed instead of proposing the valid values of the focused enum.
example:
typedef enum {
OFF = 0;
ON
}t_state;
t_state sys_state = <==== Invokation of conten...
Hello I'm running aptana studio 2 standalone on os X 10.6 and I've never been able to get a proper jquery auto-complete to work in a PHP project.
Php code completion works. Inside an .html file jQuery and html completes nicely as well. But to my frustration it doesn't complete inside a php file in a php project! And yes I've tried both ...
When typing xml in eclipse, content assist will add the closing tag of my xml.
I type eclipse adds . As soon as I type a character in the body between the opening and ending tag, eclipse instantly puts an outline around the last character of the closing tag.
It seems obvious that after you've completed typing the body, there ought to...
I'd like to implement a customized content assist (aka. auto-completion) for my Java API's and custom jsp tags. Basically, I'd like to set the advisory level (discouraged use) on the undocumented features.
(Of course, the proper way is to expose api's through a facade. However, it's way to late for that and the only way is damage control...