适当地缩进switch case语句

时间:2018-08-19 13:12:21

标签: sublimetext3

我正在处理一个打字稿代码,我想在其中实现开关案例语句。自动缩进时,case内的代码无法正确缩进。

switch (view) {
  case "home":
  this.initializeCards();
  this.getDBcards();
  break;
}

但是我该如何重新缩进

 switch (view) {
    case "home":
      this.initializeCards();
      this.getDBcards();
      break;
  }

谢谢。

0 个答案:

没有答案