File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export function registerSnippetCommands(context: vscode.ExtensionContext) {
15
15
const snippet = `> \`${ vscode . workspace . asRelativePath ( editor . document . uri . fsPath ) } \`\n\n\`\`\`${ editor . document . languageId } =${ editor . selection . start . line + 1 } \n${ text } \n\`\`\`` ;
16
16
17
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' ] ) ;
18
+ const clicked = await vscode . window . showInformationMessage ( 'New Snippet Established!' , ...[ 'Copy URL to clip board' , 'Open in browser' ] ) ;
19
19
if ( clicked === 'Copy URL to clip board' ) {
20
20
vscode . env . clipboard . writeText ( noteUrl ) ;
21
21
} else if ( clicked === 'Open in browser' ) {
You can’t perform that action at this time.
0 commit comments