We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4e545c6 + 0df4e60 commit 1d77236Copy full SHA for 1d77236
package.json
@@ -203,6 +203,10 @@
203
{
204
"command": "vscode-objectscript.showExplorerForWorkspace",
205
"when": "!config.objectscript.showExplorer"
206
+ },
207
+ {
208
+ "command": "vscode-objectscript.jumpToTagAndOffset",
209
+ "when": "editorLangId == objectscript"
210
}
211
],
212
"view/title": [
src/commands/jumpToTagAndOffset.ts
@@ -8,6 +8,7 @@ export async function jumpToTagAndOffset(): Promise<void> {
8
9
const nameMatch = file.name.match(/(.*)\.(int|mac)$/i);
10
if (!nameMatch) {
11
+ vscode.window.showWarningMessage("Jump to Tag and Offset only supports .int and .mac routines.");
12
return;
13
14
const document = vscode.window.activeTextEditor?.document;
0 commit comments