Remove read-only mode

This commit is contained in:
Zef Hemel
2023-01-03 16:23:38 +01:00
parent e4ebaa2cf4
commit 5b8744d0a8
4 changed files with 1 additions and 29 deletions
-5
View File
@@ -111,11 +111,6 @@ export function confirm(
): Promise<boolean> {
return syscall("editor.confirm", message);
}
export function enableReadOnlyMode(enabled: boolean) {
return syscall("editor.enableReadOnlyMode", enabled);
}
export function getUiOption(key: string): Promise<any> {
return syscall("editor.getUiOption", key);
}