I want to display level lines (└──) like on the screenshot.
But I looked all settings and didn't find such option.
As of now you cannot configure intellij to show those lines.
The version shown in screenshot is old version of intellij (14 and lower).
Related
I don't understand this markers (between line numbers and collapse/expand markers). What words I should to google to find a documentation about it? Thanks.
updated: It is not a Gutter
It comes from Version Control plugin, the definition of colors you can find here: File | Settings | Color scheme | VCS.
That area is called the Gutter in IntelliJ speak, so you can search the settings for that term. It's typically used to show file differences when a file is under VCS control (git, svn, etc) but can also have other usages.
I wanted to make Intellij IDEA on windows look like the one on OS X Because in
my opinion it looks much better, so I installed MacType, I was able to get the
editor font render correctly, but when I change the UI font to match OS X's UI
font, The text gets cut off in some places. The font I am trying to use is
Lucida Grande size 15. You can see it for yourself in the picture
below:
Intellij UI Text getting cut: https://i.stack.imgur.com/4jnda.png
But if I remove disable MacType rendering, everything works fine, but it looks bad.
Intellij UI Text without MacType rendering: https://i.stack.imgur.com/AJEUl.png
I've tried changing MacType's settings, but nothing works!
I am on Windows 10 Creators Update with Intellij IDEA 2017.2
Any help would be appreciated.
I found the answer myself! Apparently if you open the mactype profile you are using with notepad, and paste the following text at the end of the file:
[Experimental#idea64.exe]
ClipBoxFix=1
Then all the fonts will render correctly. Note, this does not only work for Intellij IDEA, but also all other java applications and a few others. To achieve this, all you have to do is replace "idea64.exe" with the name of the app executable. An example is for the 32-bit version of Intellij, you would replace "idea64.exe" with "idea.exe".
More information can be found here: https://github.com/snowie2000/mactype/wiki/ClipBoxFix
I can change the indentation guide line colour as shown in this image (the green lines):
I'd like to have the colour be different per indentation level, to help with code inspection and reading. Similar to this poor edit. Alternatively if it was per scope that'd be even better, i.e. the 2 for loops at the same indenation level would have different colour indentation lines.
Anybody know if this is possible in IntelliJ/Android Studio?
Thanks!
The color of the vertical indent guide can be changed in IntelliJ IDEA when you go to Preferences > Editor > Colors & Fonts > General, then select the list item “Vertical indent guide”. See this Screenshot. Tested on Mac OS X with IntelliJ IDEA Ultimate 14.1.4.
https://plugins.jetbrains.com/plugin/10080-rainbow-brackets
this plugin shows color guide lines and much more related
for all JetBrains products
I want to change the font size of netbeans navigator window. I can change the font of editor window using Tools\Options\Fonts & Colors. But it is reflected only in the editor and not in other windows like Projects, Navigator, Output, Debug.
How to change this font this everywhere in Netbeans 7.0
There is another method you can use for this.
Create a shortcut for the ide on the desktop.
Open the properties pane and in the target option where it is mentioned:
"C:\Program Files\NetBeans-11.3\netbeans\bin\netbeans64.exe" just add --fontsize 18 to the end.
So, it is going to look like this:
"C:\Program Files\NetBeans-11.3\netbeans\bin\netbeans64.exe" --fontsize 18
Apply the changes and restart the IDE. The new font size will be applied.
This goes for all kinds of Netbeans IDE no matter what the Version
You should find your answer here.
you might also want to change your font size for other parts of the IDE (other than the code).
Just add the parameter --fontsize (default size is 11) to the startup command.
You can put it into the command line when launching IDE. You can also put it into the netbeans.conf file, which is in the /etc subdirectory of NetBeans installation.
Just place it as a last parameter into the netbeans_default_options parameter.
Output and Debug font size you will find from Tools > Options > Miscellaneous
from the list select Output and change the font Size. Do the same thing for Terminal to solve the problem for Debugging.
Hope it helps you.
I'm using Intellij CE 11.0.2 with Maven and IdeaVIM on Windows 7.
When I import a certain file into my java source file:
import org.apache.wicket.markup.html.form.FormComponentPanel;
The code highlighting analysis (which marks colored lines on the side of the editor and a little colored square at the top right of the editor) stays as an eye indicating that its still processing, it doesn't complete.
If I comment out that import then the code highlighting analysis completes (with errors), also the code highlighting analysis in other files in my project stops working (doesn't complete)
Is there anyway to fix this or at least localize it to the one file, any suggestions ideas welcome
In case of such weird problems the first thing you should try is File | Invalidate Caches.