本文介绍了VS Code:更改字母间距(字距调整)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何更改 VS Code 中的水平字母间距?
How do I change the horizontal letter spacing in VS Code?
我想减少一点,换句话说,我想改变这个:
I'd like to reduce it a little, in other words, I want to change this:
为此:
推荐答案
从 VS Code 开始1.13,有一个"editor.letterSpacing"
设置.
例如,我在我的设置中使用以下代码来稍微收紧字母间距:
For example, I'm using the following code in my settings to tighten up the letter spacing ever so slightly:
{
"editor.letterSpacing": -0.15
}
这篇关于VS Code:更改字母间距(字距调整)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!