This commit is contained in:
Zef Hemel
2023-01-23 18:52:17 +01:00
parent 53bf098579
commit e7728c2d2a
10 changed files with 102 additions and 27 deletions
+5
View File
@@ -123,3 +123,8 @@ export function getUiOption(key: string): Promise<any> {
export function setUiOption(key: string, value: any): Promise<void> {
return syscall("editor.setUiOption", key, value);
}
// Vim specific
export function vimEx(exCommand: string): Promise<any> {
return syscall("editor.vimEx", exCommand);
}