8
我正在拼寫檢查乳膠文件。我希望拼寫檢查器忽略包含數字的字符串。在我的設置文件我有Sublime Text 3中ignored_words中的正則表達式spell_check?
"ignored_words":
[
"textbf",
"renewenvironment",
etc...
]
如果我添加類似".*[0-9].*"
到"ignored_words"
它似乎並沒有做任何事情。有沒有辦法做到這一點?
您是否檢查過通配符:'「* [0-9] *」'? – revo 2016-06-13 11:09:07
ST問題https://github.com/SublimeTextIssues/Core/issues/1299 – 2016-08-01 16:20:32
ST使用[Hunspell](http://hunspell.github.io)作爲其拼寫檢查器。向Hunspell添加正則表達式是一個[打開功能請求](https://sourceforge.net/p/hunspell/feature-requests/34/)。 – jwpfox 2016-09-04 07:49:56