dotnet/roslyn
Automatically Adjust Function Parameter Indentation Upon Renaming a Function
开放
#37,070 创建于 2019年7月9日
Area-IDEFeature - RenameIDE-Formatterhelp wanted
仓库指标
- 星标
- (20,414 个星标)
- PR 合并指标
- (平均合并 6天 17小时) (30 天内合并 256 个 PR)
描述
Original Developer community feedback
Rename the following function from foo to foobar will throw off the parameter alignment
void foo(parameter a,
parameter b)
{
...
}
foo > foobar
void foobar(parameter a,
parameter b)
{
...
}
I would like Visual Studio to automatically adjust the parameter alignment. Note that parameter alignment is one of the formatting options in Visual Studio.