How to increase line height in NetBeans 7?
In Apache Netbeans 14,
I was installed it via .sh file
I figure out how to change/add editor custom preferences as well open
/home/username/.netbeans/14/config/Editors/Preferences/
and open
org-netbeans-modules-editor-settings-CustomPreferences.xml
then add a new entry
<entry javaType="java.lang.Float" name="line-height-correction" xml:space="preserve">
<value><![CDATA[1.5]]></value>
</entry>
Have a nice edit.
Here you go,
- Find
org-netbeans-modules-editor-settings-CustomPreferences.xml
in~/.netbeans/x.x/config/Editors/Preferences
wherex.x
is your netbeans version. - Add this xml markup just above
</editor-preferences>
or anywhere if you know what you doing.
<entry javaType="java.lang.Float" name="line-height-correction" xml:space="preserve">
<value><![CDATA[1.4]]></value>
</entry>