sublime text3配置显示空格和制表符

2022-01-10 09:25:47 浏览数 (1)

Perferences 中选 settings。 上面是配置显示, 下面是配置自动转换。

代码语言:javascript复制
{
	"draw_white_space": "all",
	// The number of spaces a tab is considered equal to
	"tab_size": 4,
	// Set to true to insert spaces when tab is pressed
	"translate_tabs_to_spaces": true,
	//设置保存时自动转换
	"expand_tabs_on_save": true
}

0 人点赞