4

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: https://i.stack.imgur.com/DmAAj.png

jonsno
  • 279
  • 4
  • 17

2 Answers2

13

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

Mohamed Sameer
  • 2,998
  • 3
  • 22
  • 51
13

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;
Viceman
  • 161
  • 1
  • 4
  • In my case, the whole file was messed up with comments from geany etc. I had to remove everything except the two lines and then it started working. – Tyreal Jan 04 '21 at 11:36