Skip to content

Commit afe4ce3

Browse files
committed
对label支持悬浮提示和跳转定义
1 parent ded4150 commit afe4ce3

File tree

5 files changed

+164
-1370
lines changed

5 files changed

+164
-1370
lines changed

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import * as nls from 'vscode-nls'
33

44
const localize = nls.config({ messageFormat: nls.MessageFormat.both })();
55
import {runcode} from './runcode'
6-
import {hoveractivate} from "./language/hover"
6+
import {provider} from "./language/provider"
77
let asm:runcode
88
export function activate(context: vscode.ExtensionContext) {
99
console.log(localize("active.hello",'Congratulations, your extension "masm-tasm" is now active!'));
1010
asm = new runcode(context);
11-
hoveractivate(context)
11+
provider(context)
1212
let opendosbox = vscode.commands.registerTextEditorCommand('masm-tasm.opendosbox', () => {
1313
asm.runcode('opendosbox');
1414
});

0 commit comments

Comments
 (0)