Xaver Hellauer

Results 12 comments of Xaver Hellauer

Do you have any options set? Which version of clang are you running and can you provide some context to the error message?

Still the question remains, which version of `clang` are you using? ``` clang --version ```

There's also a `UseCRLF` in _clang-format_, do you have set both on either CRLF or LF?

This is indeed a good suggestion, and it also touches on the discussion in #34. I have not come to a final conclusion yet but I'm open for ideas and...

VS Code's new version 1.29 just changed its default behavior for "Format Selection" if nothing is selected. It now formats the current line. But I guess your second addition (the...

OK, as a first step, I exposed ```-assume-filename=``` as an option ```clang-format.assumeFilename```. I am not quite sure how to handle the mapping of the custom filename extensions. I guess it...

This would be one way to do this. But this also requires new configuration options in [package.json](https://github.com/xaverh/vscode-clang-format-provider/blob/master/package.json#L38). The way this is currently implemented is that there is a set of...

Well, `"activationEvents"` is how Visual Studio Code knows whether of not it has to load the extension at all. Thus, it cannot be influenced by the configuration within the extension....

I put Apex into the list of languages the extension automatically launches with. But this still needs a proper future-proof solution soon.

`activationEvent` is indeed static. It could theoretically be set to `["*"]` which means always (except the user manually disabled the extension for the given workspace in the extensions side bar)....