我可以在Visual Studio中自动缩进对齐代码吗?

时间:2016-09-08 12:58:20

标签: c# visual-studio format

我不知道它是否有名称,但我想自动缩进(/ tab?) - 将我的源代码对齐一个大的相关代码块。像这样:

之前:

let adView = FBAdView(placementID: "some ids", adSize: kFBAdSize320x50, rootViewController: self)
adView.frame = CGRect(x: 0, y: 90, width: adView.frame.size.width, height: adView.frame.size.height)
adView.delegate = self
adView.loadAd()

后:

pip3 install pygame

我知道 Ctrl + K Ctrl + F ,如建议的here,我一直都在使用它,但这不是我想要的。

我已尝试手动选中代码,但我不想每次都这样做。

我正在寻找Visual Studio扩展程序。

1 个答案:

答案 0 :(得分:3)

我正在使用Code Alignment VisualStudio扩展用于此目的。

以下是它可以做的事情(taken from official website

    person.FirstName = "Chris";                =>  person.FirstName  = "Chris"; 
    person.Surname = "McGrath";                =>  person.Surname    = "McGrath"; 
    person.Age = 24;                           =>  person.Age        = 24; 
    person.Occupation = "Software Developer";  =>  person.Occupation = "Software Developer"; 
    person.HomeTown = "Brisbane";              =>  person.HomeTown   = "Brisbane";