如题。
尤其是代码部分,因为代码往往是从别的 IDE 里复制粘贴过来的,IDE 里本身就有缩进,粘贴过来前面就会带很多空格。
比如在 IDE 里是这样:
@Controller
public class TestController {
@Autowired
private TestService testService;
@GetMapping()
public String index(){
return testService.do();
}
}
现在只想复制 Action 部分的代码,到思否的编辑器里就会变成:
@GetMapping()
public String index(){
return testService.do();
}
现在只能逐行地按 Shift+Tab 或者 Backspace 删掉空格,没法选中整段代码调整缩进。
其实是能 Tab 整段“进”,没法 Shift+Tab 整段“缩”,缩只能逐行。我不知道这算 Bug,还是就是设计如此,只能进不能缩。先当建议提吧。
我跟进下