chore: format
Some checks are pending
test / build-test (push) Waiting to run

This commit is contained in:
frelodev 2024-10-26 21:56:41 +02:00
parent 8266b94710
commit 2aa513cc98
3 changed files with 19 additions and 19 deletions

View file

@ -37,7 +37,7 @@ export async function apply_changes_to_buffer(path: string, controller: codemp.B
})) {
continue;
}
else{
else {
controller.ack(event.version);
}
locks.delete(path);

View file

@ -120,7 +120,7 @@ export async function join(selected: vscode.TreeItem | undefined) {
workspaceState.workspace.callback(async function (controller: codemp.Workspace) {
while(true){
while (true) {
if (workspaceState.workspace === null) {
controller.clearCallback();
LOGGER.info("left workspace, stopping receiving events");

View file

@ -28,7 +28,7 @@ export async function jump(selected: vscode.TreeItem | undefined) {
}
if (!user) user = await vscode.window.showInputBox({ prompt: "username" });
if (!user) return; // user cancelled with ESC
workspaceState.follow=user;
workspaceState.follow = user;
executeJump(user);
}