After upgrading to IntelliJ IDEA 2017.1 variables now do not show their types. Instead, it shows var
. Also, it abbreviates some method calls. For example instead me.getIdAsStr()
it shows me.idAsStr
. How to revert to the old behavior?
标签:
intellij-idea
相关问题
- Configure gradle plugin based on future tasks
- How to make available “open this project in Intell
- IntelliJ 2017.1.2 GOLANG debug does not work on br
- JavaFX sample issue
- Could not import the newly generated play framewor
相关文章
- In IntelliJ IDEA, how can I create a key binding t
- IntelliJ IDEA can't open projects or add SDK o
- IntelliJ Subversion Authentication Required Dialog
- Kotlin Koans with EduTools plugin: “Failed to laun
- How to set up Intellij to run javap command on a p
- How to enable “type information” for streams retur
- How to add a project to build path in IntelliJ Ide
- How do I use Gradle bootRun with --args in Intelli
To disable showing
val
/var
instead of variable type go to Settings | Editor | General | Code Folding and UnCheck Variable DeclarationThis behavior is caused by the Advanced Java Folding plug-in. Either disable the plug-in or change its setting to not fold certain code elements.