All Questions
Tagged with autosuggest eclipse
18 questions
0
votes
0
answers
35
views
How to turn off Non-Type proposals only for new variables in Eclipse?
When creating new variables, eclipse suggests names for them.
However, I don't want to see any name suggestions unless if it is a variable that was already defined previously.
When turning off non-...
1
vote
0
answers
35
views
Eclipse often does not suggest
This is my Eclipse level:
Version: 2023-03 (4.27.0)
Build id: 20230309-1520
Since I update to this from:
Version: 2020-09 (4.17.0)
Build id: 20200910-1200
I miss often suggestions for quick fixes.
For ...
1
vote
1
answer
212
views
Eclipse shows no content assist context menu (popup box) for HTML files but works fine for Java files
I use Eclipse 2022-12 with Windows 10 for a Spring Boot project with Maven.
The context menu (the popup box that automatically shows up when you type or press Strg+Space) for autocompletion (java ...
0
votes
0
answers
60
views
Eclipse Auto-Suggest For Variables
So I'm using eclipse, and one thing I've noticed is that after the dot(.), it will provide auto suggest. But not anytime else. So say I'm typing out float x = health;, I would have to type out health. ...
0
votes
0
answers
968
views
Eclipse - Ctrl+Space Content Assist doesn't work
I have just installed the 2020-12 version of Eclipse IDE, and I simply cannot get the Ctrl+Space suggestions to work. Every time I try to use them I get an empty suggestion box.
I've already searched ...
0
votes
1
answer
245
views
Eclipse Lombok builder add new suggestion
For class with @Builder Eclipse auto complete (Ctrl+Space) builder methods:
ResponseVO.builder().
It also suggests new which can't work
ResponseVO.builder().new;
Error:
Syntax error on token(s), ...
0
votes
1
answer
58
views
How to activate auto suggesting in Eclipse ?
I have a big project in C++ and I need to see auto suggestions on words.
It doesn't work even on the same file and I have checked preferenced, it's marked all in "Content Assist".
0
votes
2
answers
44
views
Eclipse fails to auto-suggest Jackson class
What is causing Eclipse to NOT recognize and consequently not offer any suggestion on an import of JsonParser.Feature as shown in the picture below:
Manually adding the static import of com.fasterxml....
2
votes
0
answers
206
views
How do I jsdoc'ument a function parameter with properties in Eclipse IDE content assist?
According to the jsdoc documentation, I can do:
/**
* @param {Object} args - Arguments
* @param {Object} args.req - The request
* @param {array} args.test - Something array'ish
*/
function ...
2
votes
0
answers
62
views
Turn on Eclipse autosuggest but not autocomplete
I have turned on Eclipse autocomplete (as shown here).
But im facing a problem. eg. - When I type fg to use as my method name, Eclipse shown auto-suggestions. Thats ok. But when I press ( for the ...
2
votes
0
answers
53
views
Eclipse for PHP suggests me variables even if I just press space
I'm using Eclipse Luna for PHP and there's something annoying.
As I push space, as I type a semicolon or a comma or a closing brace and other characters, it suggests me a list of variables ($_COOKIE, $...
7
votes
3
answers
18k
views
Changing the behavior of the Eclipse auto-complete (Content Assist)
When I am programming in Eclipse, the auto-complete \ suggestions box usually opens when typing a dot (for example after typing System. or SomeObject., and stays open while typing a similar code to ...
5
votes
2
answers
10k
views
How can I speed up Eclipse Proposals? they are very slow
I am using Eclipse for Java development. One thing that I like with IDE's are when they propose the method names that I'm typing, this improves my productivity and keeps me from misspellings.
E.g my ...
5
votes
4
answers
401
views
Eclipse help box
I am using Eclipse to program Android apps and I love how the little helper box thing comes up when you start to type and suggests things to you.
However, this only happens sporadically and I was ...
28
votes
6
answers
29k
views
Eclipse auto suggest list very slow
By auto suggest, I mean that intellisense that pops up when I write something. My problem is that if I write something like btnMyButton. after typing . I get to wait a few seconds until eclipse ...
13
votes
3
answers
13k
views
Make Eclipse intellisense/auto-suggest automatic for locally scoped and member variables/methods
Is there any way to make the auto-suggest drop down list appear for locally scoped variables and local member variables/methods without having to push ctrl+space? Like Visual Studio does? It appears ...
3
votes
3
answers
427
views
How to get back auto-completion after misspelling a method name in Eclipse?
When I am coding Java in Eclipse I like the auto-completion feature. With that I mean the popup with method-names that comes when you start typing in a method name for an object. Or maybe it's called ...
10
votes
3
answers
6k
views
Navigating the Content Assist List in Eclipse
Here are the ways the Eclipse documentation states you can navigate the Content Assist list:
You can use the mouse or the keyboard
(Up Arrow, Down Arrow, Page Up, Page
Down, Home, End, Enter) ...