Skip to content

Commit b592fc1

Browse files
committed
Fix spacing after when
1 parent 4e865b6 commit b592fc1

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/vs/workbench/services/keybinding/common/keybindingIO.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,16 @@ export class KeybindingIO {
3131
if (quotedSerializedWhen.length > 0) {
3232
out.write(`${quotedSerializeCommand},`);
3333
out.writeLine();
34-
out.write(` "when": ${quotedSerializedWhen} `);
34+
out.write(` "when": ${quotedSerializedWhen}`);
3535
} else {
36-
out.write(`${quotedSerializeCommand} `);
36+
out.write(`${quotedSerializeCommand}`);
3737
}
3838
if (item.commandArgs) {
3939
out.write(',');
4040
out.writeLine();
41-
out.write(` "args": ${JSON.stringify(item.commandArgs)} `);
41+
out.write(` "args": ${JSON.stringify(item.commandArgs)}`);
4242
}
43-
out.write('}');
43+
out.write(' }');
4444
}
4545

4646
public static readUserKeybindingItem(input: IUserFriendlyKeybinding): IUserKeybindingItem {

0 commit comments

Comments
 (0)