You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -180,9 +182,15 @@ export class ClangDocumentFormattingEditProvider implements vscode.DocumentForma
180
182
vscode.window.showInformationMessage('The \''+formatCommandBinPath+'\' command is not available. Please check your clang-format.executable user setting and ensure it is installed.');
181
183
returnresolve(null);
182
184
}
183
-
if(err){
185
+
if(stderr){
186
+
outputChannel.show();
187
+
outputChannel.clear();
188
+
outputChannel.appendLine(stderr);
184
189
returnreject('Cannot format due to syntax errors.');
0 commit comments