We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0924e2 commit 7be7934Copy full SHA for 7be7934
1 file changed
src/commands/snippet.ts
@@ -15,7 +15,7 @@ export function registerSnippetCommands(context: vscode.ExtensionContext) {
15
const snippet = `> \`${vscode.workspace.asRelativePath(editor.document.uri.fsPath)}\`\n\n\`\`\`${editor.document.languageId}=${editor.selection.start.line + 1}\n${text}\n\`\`\``;
16
17
const noteUrl = await API.newNote(snippet);
18
- const clicked = await vscode.window.showInformationMessage('New note Established!', ...['Copy URL to clip board', 'Open in browser']);
+ const clicked = await vscode.window.showInformationMessage('New Snippet Established!', ...['Copy URL to clip board', 'Open in browser']);
19
if (clicked === 'Copy URL to clip board') {
20
vscode.env.clipboard.writeText(noteUrl);
21
} else if (clicked === 'Open in browser') {
0 commit comments