decreaseIndentPattern无效

时间:2017-12-20 20:28:44

标签: visual-studio-code textmate vscode-extensions textmatebundles

我正在尝试为新语言创建一个TextMate包,但我遇到了decreaseIndentPattern的问题。它似乎没有任何效果,即使是一个微不足道的例子:

increaseIndentPattern = 'start';
decreaseIndentPattern = 'end';

我已正确设置范围,同一文件中的其他设置可以正常工作(包括increaseIndentPattern)。我错过了什么吗?

1 个答案:

答案 0 :(得分:0)

发现要对基于文本的文件启用缩进更正(我的范围以text开头),还需要以下内容:

disableIndentCorrections = :false;