fvim icon indicating copy to clipboard operation
fvim copied to clipboard

Underscores not showing

Open ghost opened this issue 4 years ago • 1 comments

I cannot see underscores in my code when using fvim. I am using all the default fvim settings, I have not set any of them.

This code:

current_time = chrono::Utc::now();
duration = current_time - last_time;

Shows up like this. image

ghost avatar Jan 30 '21 17:01 ghost

A temporary solution I believe you can do is to add FVimFontLineHeight '+1.25' or higher to your init.lua or init.vim.

Here is my current fvim config:

vim.cmd([[
FVimFontAntialias v:true
FVimFontAutohint v:true
FVimFontHintLevel 'full'
FVimFontLigature v:true
FVimFontLineHeight '+1.25'
FVimFontSubpixel v:true
]])

cpeaustriajc avatar Nov 23 '21 12:11 cpeaustriajc