vscode-clang-format icon indicating copy to clipboard operation
vscode-clang-format copied to clipboard

A Visual Studio Code extension that provides C++, C, Obj-C, Java formatting with the use of clang-format

Results 59 vscode-clang-format issues
Sort by recently updated
recently updated
newest added

I am using this plugin in a CPP project and got this error after enabling format-on-save: ``` [Error - 12:37:53 PM] Request textDocument/formatting failed. Error: Connection got disposed. at Object.dispose...

I installed this extension from the marketplace but it does not work. Maybe the problem is the path. But I cannot find out where the extension gets installed. Please provide...

copied from [80052](https://github.com/microsoft/vscode/issues/80052) Issue Type: Bug hello, for below code: ```js console.log(`Today : ${todaysDate}`); ``` when using clang-format tool, it changes to ```js console.log(`Today : $ { todaysDate }`); ```...

VSCode Version: 1.30.0 OS Version: Ubuntu 18.04 During C++ editing Steps to Reproduce: Enable clang-format configure format on save "editor.formatOnSave": true modify multiple files and copy / paste stuff sometimes...

This commit addresses #46. VSCODE's format provider mechanism does nothing if no text is selected. However `clang-format` can do something very helpful in this case: format statement which is cursor...

enhancement

A formatter that is registered with VSCode must be unregistered when the formatter is being disabled. Otherwise VSCode still thinks a formatter is available, enabling formatting actions and contributing to...

In principle, it should be as easy as calling `wsl clang-format`. I get a: > The 'wsl clang-format' command is not available. Please check your clang-format.executable user setting and ensure...

formatOnPaste seems to work, and formatOnSave obviously does, but formatOnType doesn't seem to do anything for me. Is this something that could be supported?

enhancement

I had to make some modifications to the package.json and other things when I tried to debug this locally. Maybe because of my version of node? I'm not sure.

When I comment: \# QualifierOrder: [] It reported that as "Missing QualfierOrder". When I use: QualifierOrder: [] It reported that as "Missing QualfierOrder" again. When I use: QualifierOrder: ['inline', 'static',...