We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e865b6 commit b592fc1Copy full SHA for b592fc1
1 file changed
src/vs/workbench/services/keybinding/common/keybindingIO.ts
@@ -31,16 +31,16 @@ export class KeybindingIO {
31
if (quotedSerializedWhen.length > 0) {
32
out.write(`${quotedSerializeCommand},`);
33
out.writeLine();
34
- out.write(` "when": ${quotedSerializedWhen} `);
+ out.write(` "when": ${quotedSerializedWhen}`);
35
} else {
36
- out.write(`${quotedSerializeCommand} `);
+ out.write(`${quotedSerializeCommand}`);
37
}
38
if (item.commandArgs) {
39
out.write(',');
40
41
- out.write(` "args": ${JSON.stringify(item.commandArgs)} `);
+ out.write(` "args": ${JSON.stringify(item.commandArgs)}`);
42
43
- out.write('}');
+ out.write(' }');
44
45
46
public static readUserKeybindingItem(input: IUserFriendlyKeybinding): IUserKeybindingItem {
0 commit comments