.editorconfig 是否设置了 Visual Studio 中逻辑运算符周围的间距?
Does .editorconfig have a setting for spacing around logical operators in Visual Studio?
我找到了 Visual Studio.editorconfig 设置列表 here。但我不确定它是否完整。它包含五个间距设置的列表,none 其中似乎与我想要的设置相关。
特别是,我想控制逻辑运算符周围的间距,例如:
if (x!=0)
if (x != 0)
编辑:我特别询问 .editorconfig。关键是它是解决方案内部的设置,而不是Visual Studio设置。
查看 .editorconfig reference 看起来您需要的是以下行:
csharp_space_around_binary_operators = before_and_after
它在那里提到这个标志是 "currently thwarted by this bug"。
我找到了 Visual Studio.editorconfig 设置列表 here。但我不确定它是否完整。它包含五个间距设置的列表,none 其中似乎与我想要的设置相关。
特别是,我想控制逻辑运算符周围的间距,例如:
if (x!=0)
if (x != 0)
编辑:我特别询问 .editorconfig。关键是它是解决方案内部的设置,而不是Visual Studio设置。
查看 .editorconfig reference 看起来您需要的是以下行:
csharp_space_around_binary_operators = before_and_after
它在那里提到这个标志是 "currently thwarted by this bug"。