在编程实践中,为了保持代码的可读性,每行不宜过长。如果一个逻辑行的字符数太多,最好将其折行。
如果能在某些列上显示辅助线的竖线,我们就很容易知道是否进行折行了。
Visual Studio Code中的限位竖条可以设置多个,且指定不同颜色。
在settings.json
中,为Python语言添加两条限位竖条:
{
// Other settings
"[python]": {
"editor.rulers": [
{
"column": 80,
"color": "#33ff00"
},
{
"column": 100,
"color": "#ffff00"
}
],
},
}
效果如下:
另外,在Vim中可以这样设置:
set colorcolumn=80,120