Eclipse StatEt: Content assist in console - eclipse

Content assist is very helpful but in my setup it currently only works in the Editor. Is it possible to activate content assist in the interactive console?
Please be specific: I have tried to change the 'Content Assist' key binding many times, but it does not seem to have any affect in the console.

Related

Emmet VSCode File

I'm in a web design class and writing HTML tags. I have not used VSCode prior to this, but I am told that it's supposed to have emmet built in and should extend my code when hitting tab. It does not, tab works like a regular tab button.
I tried various online solutions such as including html in the languages and turning on 'true' for emmet when hitting tab and it still doesn't work. Any idea how to get it to happen?

Eclipse : how can I disable this popup?

I'm sorry if this question has been ask before or can be found on the net. I have no idea how do I call this popup. I have no idea of the keyword to google. I tried "popup", "dialog", "confirmation" and a lot else but didn't success.
Back to the question, I've just migrate to my development machine and did fresh install for Eclipse. After that, I copy all the setting in workspace/.metadata folder from my previous machine to the new one. Everything looks fine (theme, key bindings and else) except that I have this popup appearing whenever I press some shortcut. For example, Ctrl+Space to bring up the code assist, the following dialog appears.
This popup never appeared before in my previous machine. It is annoying since I have to hit enter once every time I press those shortcut. Do you have any idea how can I turn this off?
Best
Note
I don't think this popup is code assist specific issue, I brought code assist up as an example. I also got this popup when I press shortcut to
Open Resource
Run
Refactor/Rename
Add getter/setter
and 10s other shortcut too. Also, I don't have conflict shortcut. Not that I know.
This question may have been answered here already: Disable content assist in Eclipse
Refer to the following link for the documentation on Content Assist: http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.cdt.doc.user/reference/cdt_u_c_editor_con_assist.htm
The point is to disable the actions that trigger the Content Assist.

Is it possible to get javascript syntax highlighting and auto-complete in chrome dev tools live edit mode?

I love chrome dev tool, it has been a huge productivity boost for me. I would love to find out if there is any plugin or way to get it to do auto-complete on javascript object (intelisense) and syntax highlighting in live edit mode? In the console you can press tab to complete a javascript object, property or method, but that does not seem to be available in live edit mode.
Thanks!
Auto-completion in the CodeMirror editor (should be enabled in the Settings) was landed yesterday behind a DevTools experiment "Enable text editor autocompletion" and should appear in the next Chrome Canary.
Regarding the syntax highlight, I'm not quite sure what your case is, since we always highlight JavaScript sources.

eclipse plugin: is it possible to "listen" and interpret double-clicks on text editor?

The big picture is that we need to implement a remote debugger as an eclipse plugin. The code that will be passed by during debugging will be shown in an text editor.
I am thinking how can we deal with the issue of placing breakpoints on a file. Is there any way that I can listen for a double-click event and then get the specific line on which the double click was issued?
Many thanks for reading and giving it a thought.
Have a look at the Eclipse Debug project - they have the complete infrastructure for a new debugger. Including interfaces to breakpoints, editors, etc..

Simple Eclipse Code Templates - Issue

Hi I have Code Templates enabled in Eclipse.
I just installed Eclipse for Java and Enabled Code Templates (From Code Assist Settings). I typed "sysout" Ctrl+Space, but I do not System.out.println.
Also, what exactly does Automatically Insert mean in the Code Completion options?
Thanks.
Content assist can insert 'single' proposals automatically (you have to enable the corresponding preference for this on Java > Editor > Content Assist page).
P.S. "sysout" works for me.