forked from VSCodeVim/Vim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.ts
34 lines (27 loc) · 1.05 KB
/
extension.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
* Extension.ts is a lightweight wrapper around ModeHandler. It converts key
* events to their string names and passes them on to ModeHandler via
* handleKeyEvent().
*/
import './src/actions/include-main';
import './src/actions/include-plugins';
/**
* Load configuration validator
*/
import './src/configuration/validators/inputMethodSwitcherValidator';
import './src/configuration/validators/remappingValidator';
import './src/configuration/validators/neovimValidator';
import './src/configuration/validators/vimrcValidator';
import * as vscode from 'vscode';
import { activate as activateFunc } from './extensionBase';
import { Globals } from './src/globals';
import { Register } from './src/register/register';
export { getAndUpdateModeHandler } from './extensionBase';
export async function activate(context: vscode.ExtensionContext) {
// Set the storage path to be used by history files
Globals.extensionStoragePath = context.globalStoragePath;
activateFunc(context);
}
export async function deactivate() {
await Register.saveToDisk(true);
}