How to disable the hints from autocomplete in Eclim? - eclipse

When I use the autocomplete of Eclim in vim, it shows a hint window at the top of my vim.
How can I disable it, or better, make it disappear automatically?

I think you mean the preview window showing details about the current completion item. Use
:set completeopt-=preview
to turn this off.

Related

VSCode - Disable selection on auto-complete suggestion

Whenever I use autocomplete, VSCode automatically puts whatever I type in a selection, it didn't happen before and it only started happening recently.
Here's what happens:
I type something like this and suggestion comes up:
Then I press enter to auto complete:
All of this is fine, but when I start typing in the quotes:
VSCode automatically puts my text in a selection. This causes multiple problems. Suggestions get disabled in selection and I have to press Esc everytime I want the selection disabled.
Is there any way to fix this?
The question was already answered by #Anton Solomin and #devanil. The issue is VS code auto-suggestion is not working when text is highlighted, because some of your code snippet is preventing quick suggestion by VS code.
So just tell VS code that don't disable quick suggestion if some snippets askes you to do it.
Go to VScode settings page, in settings search bar type editor.suggest.snippetsPreventQuickSuggestions
Uncheck Controls whether an active snippet prevents quick suggestion

VSCode - Disable up/down keys from navigating suggestions

In VSCode, I have disabled the Editor: Accept Suggestions On Enter setting. This means I must use TAB to accept suggestions, and use ENTER for what it's meant for - to start a newline.
I'd like to do the same thing for the arrow keys. Normally they will navigate up/down the suggestion box, but I'd rather that they consistently navigate my code instead. I'd prefer to use TAB and SHIFT+TAB for navigating the suggestions box.
Is there such a setting to accomplish this in VSCode?
Note, I would not like to disable the suggestions box altogether, just change how you navigate it.

How to wrap line in PyDev's interactive console?

Each time I want to view a long output line, I have to drag the horizontal scroll bar. Is it possible to set word wrapping in PyDev's interactive console (not editor)?
Unfortunately no, it's not currently possible to enable word wrapping in the PyDev interactive console.
You may report this as a feature request in https://www.brainwy.com/tracker/PyDev (but even better would be providing a pull request for that -- see: http://www.pydev.org/developers.html)
It is now possible as of PyDev 6.2. By default it is not enabled. To see the icon that you have to click to enable visit this. For the possibility that the link disappears, go to the console tab and you will want to look for an icon which has a yellow "left-turn" arrow and click that.

How do you keep a persistent display of optional keywords when autocompleting with Pydev in Eclipse?

In Pydev I type this:
import logging
logging.basicConfig
This will bring up Autocompletion in a window. There are several optional keywords listed. But as soon as I enter the parentheses, the Autocompletion window goes away and I can't see the keywords any more. Is there a way to keep this information persistent? If not, is there a way to output the Autocompletion to a Console window instead?
If you don't mind typing a few extra keystrokes, you could copy the contents to the clipboard: tab, tab, Ctrl-A, Ctrl-C. Then you can Ctrl-V into an editor window somewhere.
there appears to be no setting for this. if you want to start reverse-engineering, this might be a good starting point:
http://xpomul.bloggles.info/2008/08/12/advanced-features-in-eclipse-popup-menus-take-2-the-new-api/
to output autocompletion use ctrl+space

Disabling the hint window that EClipse Editor shows

when I hover over the codes in ECLispe Editor it pops up this yellow hint box for everything that I am on it to show some useful info about it. well it is cool but it is also annoying! is there a way that I can deactivate it as Default setting and then anytime I needed it I hit a hot-key to bring it up...
If you go:
Window->Preferences
In the tree look for "Hovers" under Java->Editor->Hovers
You can uncheck all the ones you do not want, or add keyboard shortcuts to activate a Hover. Not particularly useful, but may help.