How to increase line padding in Geany IDE?

Viewed 1859

I am using geany, and I need to increase line padding, ie, space between consecutive lines.

For example, in sublime text, we can change padding by:

"line_padding_bottom": 2,
"line_padding_top": 2

How do we do it for Geany? I tried many options and menus, but there doesn't seem to be an option!

Here is an image illustrating the problem: http://i.imgur.com/SWhdhaY.png

2 Answers

Go to Tools->Configuration Files->filetypes.common and search for line_height, and make as line_height=2;2;

Good answer, but you also need to uncomment [styling] line, if commented (mine was). So, configuration in filetypes.common should look like this:

[styling]
line_height=2;2;
Related