Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [ide-dev] Auto content assist

Well, I'm not sure about all eclipse plugin flavors out there, but in PyDev has an option to "request completion on all letter chars and '_'".

The user may disable it in the preferences, but it's turned on by default...

Now, the code-completion on PyDev is a bit different from most other plugins... usually that completion will give you the simpler keywords initially (like 'self', 'def', etc) and the other completions (which expand based on context or global tokens) starts when the user keeps typing and those are exhausted (or when the user explicitly presses Ctrl+Space).

All in all, I quite like it ;)

Note that in JDT you can mimick that by setting the auto-activation chars as all letters... I.e.:

Go to Preferences -> Java -> Editor -> Content Assist -> Auto Activation and set Auto Activation triggers for Java: .abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_.

Best Regards,

Fabio



On Mon, Apr 18, 2016 at 3:23 PM Doug Schaefer <cdtdoug@xxxxxxxxx> wrote:
Good question from an Arduino C++ user. Where are we, if anywhere with auto content assist. We're seeing that a lot in competing IDEs and it's a pretty nice experience and users are starting to expect it. I don't think it makes sense for one language IDE to do it and not the others.

Thoughts?
Doug.

---------- Forwarded message ----------
From: YouTube <noreply@xxxxxxxxxxx>
Date: Mon, Apr 18, 2016 at 2:50 AM
Subject: New activity on your video: Introducing the Arduino C++ IDE for Eclipse
To: cdtdoug@xxxxxxxxx


veganath
Wonderful thanks, got me going, any chance for auto CONTENT ASSIST, e.g no need to hit "ctrl" + "SPACE"?
YouTube comments are powered by Google+Learn more
Unsubscribe from these emails.

Google Inc., 1600 Amphitheatre Pkwy, Mountain View, CA 94043 USA

_______________________________________________
ide-dev mailing list
ide-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/ide-dev

Back to the top