Skip to content

Commit da7c115

Browse files
committed
Don't need to check for active connection
1 parent 2ccb953 commit da7c115

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/commands/jumpToTagAndOffset.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
import * as vscode from "vscode";
2-
import { config } from "../extension";
32
import { currentFile } from "../utils";
43

54
export async function jumpToTagAndOffset(): Promise<void> {
65
const file = currentFile();
76
if (!file) {
87
return;
98
}
10-
if (!config("conn").active) {
11-
return;
12-
}
139
const nameMatch = file.name.match(/(.*)\.(int|mac)$/i);
1410
if (!nameMatch) {
1511
return;

0 commit comments

Comments
 (0)