vscode-texinfo/src/extension.ts

28 lines
958 B
TypeScript
Raw Normal View History

2020-10-03 18:04:18 +00:00
/**
2020-10-24 21:45:32 +00:00
* extension.ts
2021-03-16 12:01:13 +00:00
*
* Copyright (C) 2020,2021 CismonX <admin@cismon.net>
*
* This file is part of vscode-texinfo.
*
* vscode-texinfo is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* vscode-texinfo is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along with
* vscode-texinfo. If not, see <https://www.gnu.org/licenses/>.
2020-10-03 18:04:18 +00:00
*/
import * as vscode from 'vscode';
2021-04-19 12:43:20 +00:00
import GlobalContext from './global_context';
2020-10-03 18:04:18 +00:00
export function activate(context: vscode.ExtensionContext) {
2021-04-19 12:43:20 +00:00
new GlobalContext(context);
2020-10-03 18:04:18 +00:00
}