Add Fold: Toggle Fold command

This commit is contained in:
Zef Hemel
2023-06-17 09:01:32 +02:00
parent 5f1f02e8b9
commit eefd8a5245
5 changed files with 19 additions and 0 deletions
+4
View File
@@ -139,6 +139,10 @@ export function unfold() {
return syscall("editor.unfold");
}
export function toggleFold() {
return syscall("editor.toggleFold");
}
export function foldAll() {
return syscall("editor.foldAll");
}