We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 854c095 commit 7081253Copy full SHA for 7081253
1 file changed
scripts/get_default_keybindings/main.js
@@ -6,6 +6,8 @@ const { runTests } = require('@vscode/test-electron');
6
async function main() {
7
try {
8
// Make two empty directories to use to launch VS Code with the cleanest possible profile.
9
+ // The '../../' part is intended to shorten the path and was needed as a workaround.
10
+ // See: https://github.com/codebling/vs-code-default-keybindings/pull/222
11
const emptyDir1 = path.resolve(__dirname, '../../empty1');
12
const emptyDir2 = path.resolve(__dirname, '../../empty2');
13
await fsPromises.mkdir(emptyDir1, { recursive: true });
0 commit comments