Tgm1024
- Total activity 79
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 14
- Subscriptions 17
-
Created Can I import "common" editor settings from IDEA into PyCharm?
I've tried importing only select sections of the IntelliJ IDEA exports (keybindings, colors) into PyCharm, hoping to see if any of the commonality between the two IDE's is copied over. I've had no ... -
Edited Custom Setter template with one statement makes one line<---works. But with two statements it goes full block(?)
AnsweredIntelliJ IDEA 2018.1 EAP (Community Edition)Build #IC-181.3741.2, built on February 13, 2018JRE: 1.8.0_152-release-1136-b11 amd64JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.oWindows 10 10.0 Ok... -
Created Column Selection (box select) permanently fattens cursor
AnsweredGoing into column select will visibly fatten the cursor (on my screen it looks something like 3x fatter). Okidoki. But hopping out of column selection (and returning to regular selection) does not... -
Created Have Format leave spacing alone?
AnsweredI found the place where I can have the Code Style for my code to have or not have spaces around (say) the equals sign, but I can't find out where I can set it to ignore whatever spacing is currentl... -
Created Minor nit: Double clicking a source file containing multiple classes doesn't open the source file
AnsweredIn the project pane view, or whatever that is called: If I double click on a java file, it will open that file. But only if there's only one class in that file. If I double click on a java file th... -
Created Can I modify how get/setters are formatted?
AnsweredOk, I am a fan of brevity, and I believe that accessors/mutators are most clear (read as: far less polluting) as follows: public int getX() { return x; }public void setX(int x) { this.x = x; }publi... -
Created Ignore package-scope warnings but not public-->private warnings?
AnsweredI know how to make things warnings and weak warnings, and I can enable the narrowing of scope warning within the code inspector. I also know how to maintain different settings for the inspection s... -
Created Select lines and see execution time for them? (VisualVM or built-in?)
AnsweredI would love to do a basic profiling more easily from within the editor, but specific to elapsed time analyses from sections of code. I would love to either position a start and end point, and get ... -
Edited Can I make a module read-only just to use for reference?
AnsweredUPDATE: 29-Nov-2017: Please see my bottom-most post for my chosen solution. I copied the source tree of the stuff I wanted directly into the project directory (outside of IDEA). I then marked ... -
Created Any documentation on a built-in IDEA script of some kind?
AnsweredI'm looking for some kind of built-in language that I can use to program various functions within IDEA. I can't find any documentation on such a thing, and macros aren't enough because I can't find...