大约有 10,000 项符合查询结果(耗时:0.0253秒) [XML]
How enable auto-format code for Intellij IDEA?
Is it possible in Intellij IDEA after typing ';' or press 'Enter' happened formatting of this string?
15 Answers
...
Intellij IDEA: Hotkey for “scroll from source”
...
In the latest IntelliJ IDEA, there is a keymap entry called "Select in Project View" with no default shortcut. Just add a shortcut key to it. No need for a plugin.
share
...
How find all unused classes in Intellij Idea?
...inspection "Unused declaration" which can find all unused code in Intellij Idea. (see this question )
But I want to find all unused classes, not methods, variables etc. Only classes. (it is difficult to find only classes in 3000 result list). How I can do that?
...
git still shows files as modified after adding to .gitignore
...already in the index.
To stop this you have to do : git rm -r --cached .idea/
When you commit the .idea/ directory will be removed from your git repository and the following commits will ignore the .idea/ directory.
PS: You could use .idea/ instead of .idea/* to ignore a directory. You can find...
Attach IntelliJ IDEA debugger to a running Java process
Is it possible to attach the IntelliJ IDEA debugger to a running Java process? If yes, how?
5 Answers
...
How can I maximize the editor pane in IntelliJ IDEA?
...the Default keymap.
14.0.3 on MacOS X
It's Cmd + Shift + F12 in IntelliJ IDEA 14.0.3 on MacOS X.
UPDATE on 2015-03-24:
IntelliJ IDEA 14.1 now has support for Distraction Free Mode. You can invoke it by clicking View > Enter Distraction Free Mode. In this mode, IntelliJ hides everything but the...
How to add directory to classpath in an application run profile in IntelliJ IDEA?
...
I am using Idea 8.
in your module dependancies tab (in the project structure dialog). Add a "Module Library". There you can select a Jar Directory to add. Then make sure the run profile is using the Classpath and JDK of the correct m...
Correct way to add external jars (lib/*.jar) to an IntelliJ IDEA project
When creating a new Java project in IntelliJ IDEA, the following directories and files are created:
9 Answers
...
How to search in all the files of a project in IntelliJ Idea? [duplicate]
...to chose the search domain. Is there such a facility available in IntelliJ Idea?
3 Answers
...
How to generate serial version UID in Intellij
...
Without any plugins:
You just need to enable highlight: (Idea v.2016, 2017 and 2018, previous versions may have same or similar settings)
File -> Settings -> Editor -> Inspections -> Java -> Serialization issues -> Serializable class without 'serialVersionUID...