Import Eclipse clean-up profile into IntelliJ - eclipse

I want to import my eclipse clean-up profile and formatter settings into IntelliJ. I was able to import the formatter config, but I found nothing about the clean-up profile. Is there a way to do it?

Related

PyDev doesn't auto-complete my imported modules

I have Eclipse 4.7.3 with PyDev installed. When I import modules from another directory (or any for that matter) pydev doesn't show a warning that it can't find the import but it doesn't do autocomplete for functions within that import.
Ex import DataDefines as df and then when using it like df.INSERTFUNCTIONHERE it doesn't give any usefull suggestions for functions found in that file. When I run it, it grabs the imports fine but I want to be able to auto-complete for syntax and spelling reasons. What could be going wrong? I have configured my python interpreter which helped make the program actually run and I have modified settings in Preferences -> PyDev -> Code Completion but now I am stuck.
Are your sources under a source folder?
Have you tried following the getting started?
http://www.pydev.org/manual_101_root.html
If you're not able to figure out from that, please provide a screenshot of your pydev package explorer showing the modules you have and the actual issue on the completion.

how to import a eclipse code template file to intellij idea?

There are two different files about code style in eclipse:
Code formatter file
Code template file.
Now I know the code formatter file can be imported with the path:
"settings -> code style -> import"
But I do not know how to import the code template file, and the code template file has the path:
"settings -> file and code template" in intellij.
Now I am coding in a project where other people use eclipse, and they only have the eclipse code template file.
Is there a way to solve the problem?
Unfortunately you cannot import code templates out of the box.
That might change in the future though..
http://blog.jetbrains.com/idea/2014/01/intellij-idea-13-importing-code-formatter-settings-from-eclipse/
Your best bet for now is to get this plugin to work and give it a go..
https://code.google.com/p/eclipse2idea/
http://www.danhaywood.com/2009/10/11/converting-eclipse-templates-to-intellij-idea/
I couldn't find the plugin on the marketplace or an update site for it though.
Best of luck..

How to import Eclipse projects to IntelliJ IDEA?

I want to import my Eclipse projects into IntelliJ IDEA, so I went to the IntelliJ IDEA help page:
If no project is currently open in IntelliJ IDEA, click Import Project
on the Welcome screen. Otherwise, select File | Import Project.
Problem is there is no Import Project option on the welcome screen and there is no Import Project option in the file menu.
Any ideas how to do this?
I checked for updates and it's telling me my 11.1.3 version is the latest, even though the help page has 12.0 in the title bar.
In IntelliJ IDEA 14.1.4 you can import a project with the following existing sources:
Eclipse project (.project) or classpath (.classpath) file
Maven project file (pom.xml)
Bnd/Bndtools workspace (workspace/cnf)
Flash Builder project file (.project, *.fxp, *.fxpl)
Gradle build script (*.gradle)
Go to File → New → Project from Existing Sources… and a dialog will open that allows you to open one of the supported files or directories.
In IntelliJ IDEA 11.1 you can find the import option in the New Project dialog. You can find it at File | New Project.
In IntelliJ IDEA 11 you should use File | New Project, Import project from external model.
Also check that Eclipse Interoperability plug-in is enabled in Settings | Plugins.

Eclipse plugin for auto import java classes

Is there a plugin in eclipse that when you type 'new JavaClass' it will auto import like 'import java.class.JavaClass' just like in FlashDevelop where-in when you type 'new MovieClip' it will put automatically 'import flash.display.MovieClip' ?
Thanks.
When you type a class name without the package, invoke the Content Assist feature by pressing Ctrl+Space (on Mac, use Command+Space) and Eclipse will auto-complete it by adding an import statement. You can also use the Organize Imports shortcut (Ctrl+Shift+o or Command+Shift+o) at any time to complete and organize the imports.
If the dependent libraries locations are added to Eclipse, eclipse does that by default. There is no need for a separate plugin for it.

Eclipse import dialog missing "General" folder--how to restore?

I'm trying to import an existing project into Eclipse. Instructions everywhere say to use "File | Import... | General | Existing Project". Sounds great, but in my Eclipse there is no "General" folder in the Import dialog. This is a customized Eclipse setup for work, so am assuming this option is disabled for some reason. Is there an easy way to turn this back on?
Looked thru prefs dialog and saw nothing obvious.
Thanks!
I'm not sure which plugin supplies the "General" folder in the import dialog. Check that org.eclipse.jdt is available. If JDT doesn't supply this entry, it depends on something which does, so installing JDT should solve the issue.