VS2010如何设置行长自动换行
我使用宽屏,喜欢以 16:9 的比例编码。所以有时会有一个 string.Format
... 或任何比旧的 4:3 屏幕格式更大的东西。但 VS 不想使用可用空间,并且总是在可见线的 50% 左右进行换行。
在哪里可以调整自动换行以适应更宽的屏幕?
顺便说一句,我正在使用 ReSharper (5.1)。
示例:
I use a wide screen and like to code in 16:9. So sometimes there is a string.Format
... or whatever the is larger than the old 4:3 screen format. But VS does not want to use the avaiable space and just always makes a line break at about 50% of the visible line.
Where can I adjust the automatic line break to the wider screen?
btw I am using ReSharper (5.1).
example:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这是 ReSharper 所做的。在 ReSharper 中 |选项|语言 | C# |格式样式 |换行和换行,在
换行
下有一个条目右边距(列) - 向上调整它以匹配您希望ReSharper换行的宽度。我不相信 VS 本身会重排文本。
请注意,VS 有一个选项可以显示换行文本(
编辑 | 高级 | 自动换行
),但从打开此选项时的行号可以看出,实际上并没有改变文本。I think this is ReSharper's doing. In
ReSharper | Options | Languages | C# | Formatting style | Line Breaks and Wrapping
, underLine wrapping
there is an entry Right margin (columns) - adjust this upwards to match the width you want ReSharper to wrap to.I don't believe VS on its own will reflow text.
Note that there is a VS option to display wrapped text (
Edit | Advanced | Word Wrap
), but as can be seen from the line numbers when this is turned on, that doesn't actually change the text.