【发布时间】:2015-04-24 23:47:45
【问题描述】:
我正在尝试对 Latex 文件进行拼写检查。我希望拼写检查器忽略包含数字的字符串。在我的设置文件中,我有
"ignored_words":
[
"textbf",
"renewenvironment",
etc...
]
如果我将".*[0-9].*" 之类的内容添加到"ignored_words",它似乎没有任何作用。有没有办法做到这一点?
【问题讨论】:
-
你检查通配符了吗:
"*[0-9]*"? -
ST 使用Hunspell 作为其拼写检查器。将正则表达式添加到 Hunspell 是 open feature request。
标签: regex latex sublimetext sublimetext3