vscode-custom-local-formatters
vscode-custom-local-formatters copied to clipboard
[BUG] tabSize
When i use ${tabSize}
i got this error:
Formatter failed: ... function toString() { [native code] }
In extension.ts
at line 38:
.replace(/\${tabSize}/g, '' + options.tabSize.toString);
must
.replace(/\${tabSize}/g, '' + options.tabSize.toString());