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
Copy file name to clipboardExpand all lines: src/extension.ts
+8-1
Original file line number
Diff line number
Diff line change
@@ -189,10 +189,13 @@ export async function activate(context: vscode.ExtensionContext) {
189
189
constoptionJCF=<vscode.MessageItem>{
190
190
title: "Jedi Code Format"
191
191
};
192
+
constoptionJCFQ=<vscode.MessageItem>{
193
+
title: "JCF (Quadroid)"
194
+
};
192
195
constoptionPTOP=<vscode.MessageItem>{
193
196
title: "FreePascal PtoP"
194
197
};
195
-
vscode.window.showErrorMessage('The "pascal.formatter.engine" setting is not defined. Do you want to download some formatter tool first?',optionJCF,optionPTOP).then(option=>{
198
+
vscode.window.showErrorMessage('The "pascal.formatter.engine" setting is not defined. Do you want to download some formatter tool first?',optionJCF,optionJCFQ,optionPTOP).then(option=>{
196
199
// nothing selected
197
200
if(typeofoption==='undefined'){
198
201
reject('undefined');
@@ -204,6 +207,10 @@ export async function activate(context: vscode.ExtensionContext) {
0 commit comments