vscode-custom-local-formatters icon indicating copy to clipboard operation
vscode-custom-local-formatters copied to clipboard

Lets users add formatters to VSCode that run locally defined scripts.

Results 8 vscode-custom-local-formatters issues
Sort by recently updated
recently updated
newest added

I extended the JSON schema a bit to include more auto-completion / examples for the available settings

In such a case, it might be simpler to just provide the file path to the formatter. Is that possible? Thank you.

Hi, ```JSON "[blade]": { "editor.defaultFormatter": "jkillian.custom-local-formatters" }, "[php]": { "editor.defaultFormatter": "jkillian.custom-local-formatters" }, "customLocalFormatters.formatters": [ { "command": "/var/www/stdin-blade-stdout.sh", "languages": [ "blade" ] }, { "command": "/var/www/stdin-pint-stdout.sh", "languages": [ "php" ] }...

currently, this extension supports the "format document" action. it would be great if there was some way to support "format selection" too I think this may require adding the option...

Bumps [minimist](https://github.com/minimistjs/minimist) from 1.2.5 to 1.2.8. Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long option followed by single dash [#17](https://github.com/minimistjs/minimist/issues/17) [Tests] Remove duplicate test [#12](https://github.com/minimistjs/minimist/issues/12) [Fix]...

dependencies

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); ```...

Bumps [qs](https://github.com/ljharb/qs) from 6.10.1 to 6.11.0. Changelog Sourced from qs's changelog. 6.11.0 [New] [Fix] stringify: revert 0e903c0; add commaRoundTrip option (#442) [readme] fix version badge 6.10.5 [Fix] stringify: with arrayFormat:...

dependencies

Thanks a lot for this plugin! Such a simple and clean solution to avoid creating unnecessary extensions :) The plugin is working great with VS Code's `Format Document` command, but...