File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -222,11 +222,17 @@ export async function updateCopilotInstructions(
222
222
buttons . push ( { title : "Don't show again" } ) ;
223
223
}
224
224
225
+ const modal = userInvoked ;
226
+
225
227
const response = await vscode . window . showInformationMessage (
226
228
"Add Q# guidance to copilot-instructions.md?\n\n" +
227
- "Updating this file will help GitHub Copilot understand and work better with Q# files and other Quantum Development Kit features." ,
229
+ "Updating this file will help GitHub Copilot understand and work better with Q# files and other Quantum Development Kit features.\n\n" +
230
+ "Learn more at " +
231
+ ( modal
232
+ ? "https://aka.ms/qdk.copilot" // links don't render in modal dialogs
233
+ : "[https://aka.ms/qdk.copilot](https://aka.ms/qdk.copilot)" ) ,
228
234
{
229
- modal : userInvoked ,
235
+ modal,
230
236
} ,
231
237
...buttons ,
232
238
) ;
You can’t perform that action at this time.
0 commit comments