Skip to content

Commit f418fcc

Browse files
committed
改为子模块
1 parent 6a03bf2 commit f418fcc

14 files changed

+31
-13328
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[submodule "server"]
22
path = server
33
url = https://github.com/sumneko/lua-language-server
4+
[submodule "client/3rd/vscode-lua-doc"]
5+
path = client/3rd/vscode-lua-doc
6+
url = https://github.com/actboy168/vscode-lua-doc

client/3rd/vscode-lua-doc

Submodule vscode-lua-doc added at 646ab64

client/out/extension.js

+12-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/out/luadoc.js

-192
This file was deleted.

client/src/extension.ts

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
1+
import * as vscode from 'vscode'
12
import * as languageserver from './languageserver';
2-
import * as luadoc from './luadoc';
3+
import * as luadoc from '../3rd/vscode-lua-doc/extension';
34

4-
export function activate(context) {
5+
export function activate(context: vscode.ExtensionContext) {
56
languageserver.activate(context);
6-
luadoc.activate(context);
7+
8+
let luadocContext: vscode.ExtensionContext = {
9+
subscriptions: context.subscriptions,
10+
workspaceState: context.workspaceState,
11+
globalState: context.globalState,
12+
extensionPath: context.extensionPath + '/client/3rd/vscode-lua-doc',
13+
asAbsolutePath: context.asAbsolutePath,
14+
storagePath: context.storagePath,
15+
globalStoragePath: context.globalStoragePath,
16+
logPath: context.logPath,
17+
};
18+
luadoc.activate(luadocContext);
719
}
820

921
export function deactivate() {

0 commit comments

Comments
 (0)