shuGH / vscode-table-formatter

Table formatter extension for VSCode.
MIT License
49 stars 12 forks source link

Make `explicitFullwidthChars` work with long regular expressions. #29

Open Matsuyanagi opened 2 years ago

Matsuyanagi commented 2 years ago

'℃'の文字を含む場合の動作について · Issue #9 · shuGH/vscode-table-formatter 上記 issue に関連してですが、 ①②... αΒ... 複数の文字に対して範囲を指定したいです。 現在のコードでは長さを 1 に制限しているので explicitFullwidthChars には1文字ずつしか指定できません。 長さ制限を取り払うことで複雑な正規表現をかけるようになりますがいかがでしょうか。

    "tableformatter.common.explicitFullwidthChars": [
        "[①-⑨]",
        "[α-ω]",
    ],