IntelliJ IDEA not showing my module/project
This is way late, but deleting my .idea folder did the trick. Close IntelliJ cd <project-path> rm -rf .idea
This is way late, but deleting my .idea folder did the trick. Close IntelliJ cd <project-path> rm -rf .idea
I’ve noticed that ‘gd’ seems to go to the declaration.
With the latest Scala plugin build, there is an API which can be used to write your own plugin to support your macros: http://blog.jetbrains.com/scala/2015/10/14/intellij-api-to-build-scala-macros-support/ Now, everyone can use this API to make their macros more friendly to their favorite IDE. To do that, you have to implement SyntheticMembersInjector, and register it in the plugin.xml file: … Read more
Create separate rows for the different method visibilities in the Arrangement part of the Code Style.
Basically, “Build Artifact” is a conditional build, meaning it will only build if there is any modified code. If you haven’t changed anything, it won’t do anything. “Rebuild Artifact”, however, will force a build from scratch no matter if there are code changes or not. From the horse’s mouth: https://intellij-support.jetbrains.com/hc/en-us/community/posts/206866915-understanding-build-vs-rebuild-vs-make-vs-compile
The correct answer was posted by @matt-helliwell if you’re coming from a version older than 2016.2. File -> Invalidate Caches and Restart If the above doesn’t fix your problem, track this issue: https://youtrack.jetbrains.com/issue/IDEA-157837
Code | Auto-Indent Lines (Ctrl+Alt+I in Windows default keymap).
Please check File | Settings | Editor | General | Auto Import | Exclude from Import and Completion. If java.util.List is there, remove it.
First you’ll have to highlight a symbol by pressing Ctrl+Shift+F7. Then you just press F3 or Shift+F3 no navigate between the highlighted symbols. When done you press Esc to exit the highlight searching. It is all described on Highlightning Usages in IntelliJ Web Help.