英文:
Large unused area in visual studio code on right
问题
我第一次使用VSC,对代码中的标尺感到困惑。它会阻止我在其后编写代码吗?如果是这样,窗口中似乎有大量未使用的空间。
我已成功移除了迷你地图,但我仍然找不到方法来去掉这个巨大的未使用空间,有人可以建议如何摆脱它吗?
英文:
I'm using VSC for the first time and I'm confused by the ruler in the code. Will it prevent me from writing past it? If so, then it seems like there's a huge unused area in the window.
I was able to remove the minimap, but I still cannot find a way to remove this huge unused space, can any one suggest how to get rid of it
答案1
得分: 1
这一行仅仅是一个视觉指南。请查看 editor.rulers
设置。
除非您还执行 "editor.wordWrap": "wordWrapColumn"
并设置 "editor.wordWrapColumn"
为某个值,否则当您开始在其后写入时,它并不一定会自动换行。
英文:
That line is just a visual guide. See the editor.rulers
setting.
It doesn't necessasrily wrap lines when you start to write past it, unless you also do "editor.wordWrap": "wordWrapColumn"
and set "editor.wordWrapColumn"
to something.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论