Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to disable bold font in vim?

Tags:

vim

editor

i've removed all references to bold (gui=bold, cterm=bold, term=bold) in the color syntax file slate.vim but i still see some bolded text. for example in a python file, the keywords class, def, try, except, return, etc. are still in a bold blue font.

also how to disable bold in status messages, like "recording" or "Press ENTER or type command.."?

like image 841
devskii Avatar asked Oct 19 '10 18:10

devskii


People also ask

How do I make text bold in vim?

To choose various fonts just use :set guifont=* and you'll get a dialog chooser. After you've chosen your preferred font use :set guifont? to see the font specification that you need to put in your vimrc. Therefore to use a bold font in console Vim, change the font of your terminal to a bold font.

How do I print bold text in PHP?

In order to get bold text, you need to use font-weight and to get the simple text you can use <span> tag. All this gets added in the echo.


1 Answers

Instead of removing =bold references you should replace them by

gui=NONE
cterm=NONE
term=NONE
like image 110
Tassos Avatar answered Sep 18 '22 19:09

Tassos