java,eclipse,code-completion,eclipse-mars
This was a bug introduced by the Code Recommenders plug-in (see answer by @Johannes Dorn for the fix). You can (temporarily) disable Code Recommenders via Window > Preferences > Code Recommenders > Completions > [x] Enable Code Recommenders code completion...
java,intellij-idea,code-completion
For followers, one thing that helped me (auto complete only showed cast field instanceof etc.) was that I had opened a maven module that didn't link correctly to its children (it had a commented out submodules section), so IntelliJ just showed the maven java files as basically "text" files with...
c++,ubuntu,codeblocks,sfml,code-completion
libsfml-dev reinstall was enough.
visual-studio-2013,editor,intellisense,code-completion
Ok, i fixed my problem by running the setup, and choosing the repair option. Everything is back to normal now.
html,css,eclipse,code-completion,google-closure-stylesheet
For individual files you can just right click on the file and select 'Open With > CSS editor' (this will be remembered for future editing) To set for all files go to 'Preferences > General > Content Types'. Find 'CSS' under 'Text' and click 'Add...' to add a '*.gss' association....
visual-studio,intellij-idea,intellisense,code-completion
You can easily enable this feature in IntelliJ. Go to Settings/Editor/Autocompletion and check insert selected variant by typing dot, space, etc. Btw: settings section was restructured a bit so this setting might be in a different location in IntelliJ 14 (I currently have 13 installed). But you should be able...
Code templates are different concept from Code Completion. Code templates allow you to expand a shortcut into a snippet of java code (e.g. psvm => public static void main(String[] args) {...}). In NetBeans you can exclude packages, classes or methods from code completion: Preferences -> Editor -> Code Completion ->...
symfony2,phpstorm,fosuserbundle,autosuggest,code-completion
You have to assign to the variable an annotation like showed below to tell to phpstorm from which class the variable receive the instance (ps: I don't use fosUserBundle). /** @var \myProject\appBundle\entityManager $userManager */ $userManager = $this->container->get('fos_user.user_manager'); PS: Have you installed the Symfony2 plugin? ...
c++,dictionary,hash,qt-creator,code-completion
This feature does not seem to be supported by Qt Creator. There's an open issue about it on http://bugreports.qt.io/. It does work when using the ClangCodeModel plugin though. To use it, go to Help > About Plugins and activate the plugin there: Then, enable its use in the options. Tools...
eclipse-plugin,code-completion,content-assist
Well, plain PyDev behaves as expected for me (i.e.: the code completions appear on all the key strokes). Now, let's see if we can track it down a bit better: instead of removing the templates, what you should do is go to the preferences > pydev > editor > code...
php,symfony2,netbeans,phpdoc,code-completion
I think the problem is @return pointing to My\Custom\Bundle\Classes\Factories\My\Custom\Bundle\Model\UserQuery try changing it to this /** * ... * @return UserQuery */ Without the use statement it should be like this /** * ... * @return \My\Custom\Bundle\Model\UserQuery */ ...
c++,qt-creator,code-completion
Is there any way to get really smart code completion? Well, the answer to your question is Yes. You could implement a plugin or add that feature to an existing one. But, right now, the only plugin that comes by default in the QtCreator and deals with code completion is...
code-completion,tern,eclipse-orion
Orion has only moved to Tern for content assist proposals a couple weeks ago (mid-April 2015). https://bugs.eclipse.org/bugs/show_bug.cgi?id=432940 We are working on enabling multi-file support. https://bugs.eclipse.org/bugs/show_bug.cgi?id=464821...
IMHO not possible now, there is some enhancement in NetBeans' bugzilla. The "workaround" is to let NetBeans insert FQN and then press Ctrl+Shift+I to fix namespaces, this will remove FQN and insert use statements.
xcode,import,autocomplete,code-completion
Restart Xcode. Deleting the DerivedData of Xcode should fix the issue. You can do this by heading to ~/Library/Developer/XCode/DerivedData and deleting all the subfolders of it. By the way, in the first screenshot you can't use an if statement that way (outside any function). So this may not be a...
You could give the Xcode Fuzzy Autocomplete plugin a whirl. I recommend first installing Alcatraz, an Xcode package manager, which will allow you to easily enable and disable this plugin, not to mention discover other interesting ones. ...
python,eclipse,pydev,super,code-completion
Humm, that sounds like a shortcoming in the PyDev type inference engine. Please report that at https://sw-brainwy.rhcloud.com/tracker/PyDev (the type inference is one of the current development focuses).
android,android-studio,code-completion
Are you talking about using Alt + Enter? this link might help: https://www.jetbrains.com/idea/help/keyboard-shortcuts-you-cannot-miss.html
I fixed the problem. It seems like I had to delete the ModuleCache folder in my derived data folder, not only the derived data from my project.
It is a bug: http://youtrack.jetbrains.com/issue/RUBY-15127 It was fixed in 6.3.3, which was released yesterday: http://blog.jetbrains.com/ruby/2014/06/rubymine-6-3-3-rspec-3-code-insight-other-fixes/ This duplicate bug report http://youtrack.jetbrains.com/issue/RUBY-15195 gives a workaround, which is to go to RubyMine's registry (Control-Shift-A and type "registry") and uncheck "show.live.templates.in.completion". That works, and it revealed to me the existence of RubyMine's registry, so...
clang,code-completion,codelite
You must have clang installed during CodeLite building (for the libs), otherwise it will be greyed out. I faced the same issue and had to compile CodeLite several times....
xcode,swift,ide,code-completion
This is something I also despise while writing code in swift. There is no great way to do this, therefore you have to choose your method before you let it autocomplete. For both scenario 1 and 2, you would have to type the first letters of tableView and animateWithDuration respectively,...
r,namespaces,code-completion,tab-completion
You should consider putting your functions in a package to organise them. Functions that are not exported will only be accessible by doing 'package:::functionNotExported' and will not be listed when just doing 'functionNotExpo[tab]' See for instance debugging a function in R that was not exported by a package...