],
"main": "./out/src/extension",
"activationEvents": [
- "onLanguage:cpp",
- "onLanguage:c",
- "onLanguage:csharp",
- "onLanguage:objective-c",
- "onLanguage:objective-cpp",
- "onLanguage:java",
- "onLanguage:javascript",
- "onLanguage:typescript",
- "onLanguage:proto",
- "onLanguage:proto3",
- "onLanguage:textproto",
- "onLanguage:apex",
- "onLanguage:glsl",
- "onLanguage:hlsl",
- "onLanguage:cuda",
- "onLanguage:cuda-cpp"
+ "onStartupFinished"
],
"contributes": {
"configuration": {
"title": "Clang-Format configuration",
"properties": {
"clang-format.executable": {
- "type": "string",
- "default": "clang-format",
+ "additionalProperties": false,
+ "order": 1,
+ "type": "object",
+ "properties": {
+ "default": {
+ "type": "string",
+ "default": "clang-format"
+ },
+ "windows": {
+ "type": "string"
+ },
+ "linux": {
+ "type": "string"
+ },
+ "osx": {
+ "type": "string"
+ }
+ },
+ "default": {
+ "default": "clang-format"
+ },
"description": "clang-format executable path"
},
- "clang-format.executable.windows": {
- "type": "string",
- "default": "",
- "description": "clang-format executable path on Windows"
- },
- "clang-format.executable.linux": {
- "type": "string",
- "default": "",
- "description": "clang-format executable path on Linux"
- },
- "clang-format.executable.osx": {
- "type": "string",
- "default": "",
- "description": "clang-format executable path on macOS"
- },
- "clang-format.style": {
- "type": "string",
- "default": "file",
- "description": "clang-format style.(-style=value, value can be file, LLVM, Google, Chromium, Mozilla, WebKit or json configure)"
- },
- "clang-format.fallbackStyle": {
+ "clang-format.style.default": {
+ "order": 2,
"type": "string",
+ "title": "Style",
"default": "LLVM",
- "description": "clang-format fallback style.(-fallback-style=value, value can be none, LLVM, Google, Chromium, Mozilla, WebKit)"
- },
- "clang-format.language.cpp.enable": {
- "type": "boolean",
- "default": true,
- "description": "enable formatting for C++ (requires reloading Visual Studio Code)"
- },
- "clang-format.language.cpp.style": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for C++, left empty to use clang-format.style"
- },
- "clang-format.language.cpp.fallbackStyle": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for C++, left empty to use clang-format.fallbackStyle"
- },
- "clang-format.language.c.enable": {
- "type": "boolean",
- "default": true,
- "description": "enable formatting for C (requires reloading Visual Studio Code)"
- },
- "clang-format.language.c.style": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for C, left empty to use clang-format.style"
- },
- "clang-format.language.c.fallbackStyle": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for C, left empty to use clang-format.fallbackStyle"
- },
- "clang-format.language.csharp.enable": {
- "type": "boolean",
- "default": true,
- "description": "enable formatting for C# (requires reloading Visual Studio Code)"
- },
- "clang-format.language.csharp.style": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for C#, left empty to use clang-format.style"
- },
- "clang-format.language.csharp.fallbackStyle": {
- "type": "string",
- "default": "Microsoft",
- "description": "clang-format fallback style for C#, left empty to use clang-format.fallbackStyle"
- },
- "clang-format.language.objective-c.enable": {
- "type": "boolean",
- "default": true,
- "description": "enable formatting for Objective-C (requires reloading Visual Studio Code)"
- },
- "clang-format.language.objective-c.style": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for Objective-C, left empty to use clang-format.style"
- },
- "clang-format.language.objective-c.fallbackStyle": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for Objective-C, left empty to use clang-format.fallbackStyle"
- },
- "clang-format.language.objective-cpp.enable": {
- "type": "boolean",
- "default": true,
- "description": "enable formatting for Objective-C++ (requires reloading Visual Studio Code)"
- },
- "clang-format.language.objective-cpp.style": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for Objective-C++, left empty to use clang-format.style"
- },
- "clang-format.language.objective-cpp.fallbackStyle": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for Objective-C++, left empty to use clang-format.fallbackStyle"
- },
- "clang-format.language.java.enable": {
- "type": "boolean",
- "default": true,
- "description": "enable formatting for Java (requires reloading Visual Studio Code)"
- },
- "clang-format.language.java.style": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for Java, left empty to use clang-format.style"
- },
- "clang-format.language.java.fallbackStyle": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for Java, left empty to use clang-format.fallbackStyle"
- },
- "clang-format.language.javascript.enable": {
- "type": "boolean",
- "default": true,
- "description": "enable formatting for JavaScript (requires reloading Visual Studio Code)"
- },
- "clang-format.language.javascript.style": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for JavaScript, left empty to use clang-format.style"
- },
- "clang-format.language.javascript.fallbackStyle": {
- "type": "string",
- "default": "google",
- "description": "clang-format fallback style for JavaScript"
- },
- "clang-format.language.typescript.enable": {
- "type": "boolean",
- "default": true,
- "description": "enable formatting for TypeScript (requires reloading Visual Studio Code)"
- },
- "clang-format.language.typescript.style": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for TypeScript, left empty to use clang-format.style"
- },
- "clang-format.language.typescript.fallbackStyle": {
- "type": "string",
- "default": "google",
- "description": "clang-format fallback style for TypeScript"
- },
- "clang-format.language.proto.enable": {
- "type": "boolean",
- "default": true,
- "description": "enable formatting for Protobuf (requires reloading Visual Studio Code)"
- },
- "clang-format.language.proto.style": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for Protobuf, left empty to use clang-format.style"
- },
- "clang-format.language.proto.fallbackStyle": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for Protobuf, left empty to use clang-format.fallbackStyle"
- },
- "clang-format.language.textproto.enable": {
- "type": "boolean",
- "default": true,
- "description": "enable formatting for textproto files"
- },
- "clang-format.language.textproto.style": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for textproto, left empty to use clang-format.style"
- },
- "clang-format.language.textproto.fallbackStyle": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for textproto, left empty to use clang-format.fallbackStyle"
- },
- "clang-format.language.apex.enable": {
- "type": "boolean",
- "default": true,
- "description": "enable formatting for Apex (requires reloading Visual Studio Code)"
- },
- "clang-format.language.apex.style": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for Apex, left empty to use clang-format.style"
- },
- "clang-format.language.apex.fallbackStyle": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for Apex, left empty to use clang-format.fallbackStyle"
- },
- "clang-format.language.glsl.enable": {
- "type": "boolean",
- "default": true,
- "description": "enable formatting for GLSL (requires reloading Visual Studio Code)"
- },
- "clang-format.language.glsl.style": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for GLSL, left empty to use clang-format.style"
- },
- "clang-format.language.glsl.fallbackStyle": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for GLSL, left empty to use clang-format.fallbackStyle"
- },
- "clang-format.language.hlsl.enable": {
- "type": "boolean",
- "default": true,
- "description": "enable formatting for HLSL (requires reloading Visual Studio Code)"
- },
- "clang-format.language.hlsl.style": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for HLSL, left empty to use clang-format.style"
- },
- "clang-format.language.hlsl.fallbackStyle": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for HLSL, left empty to use clang-format.fallbackStyle"
- },
- "clang-format.language.cuda.enable": {
- "type": "boolean",
- "default": true,
- "description": "enable formatting for CUDA (requires reloading Visual Studio Code)"
- },
- "clang-format.language.cuda.style": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for CUDA, left empty to use clang-format.style"
- },
- "clang-format.language.cuda.fallbackStyle": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for CUDA, left empty to use clang-format.fallbackStyle"
- },
- "clang-format.language.cuda-cpp.enable": {
- "type": "boolean",
- "default": true,
- "description": "enable formatting for CUDA (requires reloading Visual Studio Code)"
- },
- "clang-format.language.cuda-cpp.style": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for CUDA, left empty to use clang-format.style"
- },
- "clang-format.language.cuda-cpp.fallbackStyle": {
- "type": "string",
- "default": "",
- "description": "clang-format fallback style for CUDA, left empty to use clang-format.fallbackStyle"
+ "description": "clang-format style.\n(-style=value, value can be file, LLVM, Google, Chromium, Mozilla, WebKit or json configure)"
+ },
+ "clang-format.fallbackStyle.default": {
+ "order": 3,
+ "type": "string",
+ "title": "Fallback Style",
+ "default": "",
+ "description": "clang-format fallback style.\n(-fallback-style=value, value can be none, LLVM, Google, Chromium, Mozilla, WebKit)"
+ },
+ "clang-format.style.languages": {
+ "order": 6,
+ "type": "object",
+ "default": {},
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "Object with the key as LanguageId and value as a clang-format style."
+ },
+ "clang-format.fallbackStyle.languages": {
+ "order": 7,
+ "type": "object",
+ "default": {},
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "Object with the key as LanguageId and value as a clang-format fallback style."
+ },
+ "clang-format.enabledLanguageIds": {
+ "order": 4,
+ "description": "Specify a list of languageIds to format.",
+ "title": "Enabled Language Ids",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "default": [
+ "c"
+ ],
+ "uniqueItems": true
},
"clang-format.assumeFilename": {
+ "order": 99,
"type": "string",
"default": "",
- "description": "When reading from stdin, clang-format assumes this filename to look for a style config file (with -style=file) and to determine the language."
+ "description": "When reading from stdin, clang-format assumes this filename to look for a style config file (with -style=file) and to determine the language.\nThe default value is the current filename being formated."
},
"clang-format.additionalArguments": {
+ "order": 100,
"type": "string",
"default": "",
"description": "Additional arguments to pass to clang-format"
"url": "https://github.com/xaverh/vscode-clang-format-provider"
},
"license": "MIT"
-}
+}
\ No newline at end of file
import cp = require('child_process');
import path = require('path');
import fs = require('fs');
-import {
- MODES,
- ALIAS
-} from './clangMode';
import { getBinPath } from './clangPath';
import sax = require('sax');
private getExecutablePath() {
const platform = getPlatformString();
const config = vscode.workspace.getConfiguration('clang-format');
+ const ExecPath = config.get<object>('executable');
+ let execPath = ExecPath[platform];
- const platformExecPath = config.get<string>('executable.' + platform);
- const defaultExecPath = config.get<string>('executable');
- let execPath = platformExecPath || defaultExecPath;
+ if (!execPath) {
+ execPath = ExecPath['default'];
+ }
if (!execPath) {
return this.defaultConfigure.executable;
if (execPath.includes('${workspaceFolder})')) {
execPath = execPath.replace('${workspaceFolder}', this.getWorkspaceFolder());
}
-
return execPath
.replace(/\${workspaceRoot}/g, vscode.workspace.rootPath)
.replace(/\${cwd}/g, process.cwd())
}
private getLanguage(document: vscode.TextDocument): string {
- return ALIAS[document.languageId] || document.languageId;
+ return document.languageId;
}
private getStyle(document: vscode.TextDocument) {
const config = vscode.workspace.getConfiguration('clang-format');
- let ret = config.get<string>(`language.${this.getLanguage(document)}.style`);
+ const styleLangs = config.get<string>('style.languages');
+ let ret = styleLangs[this.getLanguage(document)];
if (ret && ret.trim()) {
ret = this.replaceStyleVariables(ret.trim(), document);
}
}
- ret = config.get<string>('style');
+ ret = config.get<string>('style.default');
if (ret && ret.trim()) {
ret = this.replaceStyleVariables(ret.trim(), document);
if (ret && ret.trim()) {
private getFallbackStyle(document: vscode.TextDocument) {
const config = vscode.workspace.getConfiguration('clang-format');
- let strConf = config.get<string>(`language.${this.getLanguage(document)}.fallbackStyle`);
+ const fallbackStyleLangs = config.get<object>('fallbackStyle.languages');
+ let strConf = fallbackStyleLangs[this.getLanguage(document)];
if (strConf && strConf.trim()) {
strConf = this.replaceStyleVariables(strConf.trim(), document);
}
}
- strConf = config.get<string>('fallbackStyle');
+ strConf = config.get<string>('fallbackStyle.default');
if (strConf && strConf.trim()) {
strConf = this.replaceStyleVariables(strConf.trim(), document);
if (strConf && strConf.trim()) {
export function activate(ctx: vscode.ExtensionContext): void {
+ const config = vscode.workspace.getConfiguration('clang-format');
const formatter = new ClangDocumentFormattingEditProvider();
- let availableLanguages = {};
+ const availableLanguages = vscode.languages.getLanguages();
+ const enabledLangs = config.get<string[]>('enabledLanguageIds');
- MODES.forEach((mode) => {
+ enabledLangs.forEach((language) => {
+ let mode = { language, scheme: 'file' };
ctx.subscriptions.push(vscode.languages.registerDocumentRangeFormattingEditProvider(mode, formatter));
ctx.subscriptions.push(vscode.languages.registerDocumentFormattingEditProvider(mode, formatter));
- availableLanguages[mode.language] = true;
});
}