From e3601edb96ba0db5fce7a2bad134fddc8c57d72f Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Fri, 2 Nov 2018 14:25:02 +0100 Subject: [PATCH] Create a workspace configuration file --- vscode-extension-samples.code-workspace | 94 +++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 vscode-extension-samples.code-workspace diff --git a/vscode-extension-samples.code-workspace b/vscode-extension-samples.code-workspace new file mode 100644 index 00000000..0873ebf7 --- /dev/null +++ b/vscode-extension-samples.code-workspace @@ -0,0 +1,94 @@ +{ + "folders": [ + { + "path": "webview-sample" + }, + { + "path": "theme-sample" + }, + { + "path": "tree-view-sample" + }, + { + "path": "webpack-sample" + }, + { + "path": "vim-sample" + }, + { + "path": "terminal-sample" + }, + { + "path": "task-provider-sample" + }, + { + "path": "statusbar-sample" + }, + { + "path": "smart-template-strings-sample" + }, + { + "path": "quickinput-sample" + }, + { + "path": "progress-sample" + }, + { + "path": "nodefs-provider-sample" + }, + { + "path": "multi-diagnostics-sample" + }, + { + "path": "lsp-sample" + }, + { + "path": "lsp-multi-server-sample" + }, + { + "path": "lsp-log-streaming-sample" + }, + { + "path": "legacy-samples" + }, + { + "path": "i18n-sample" + }, + { + "path": "hellocode-sample" + }, + { + "path": "hellocode-minimal-sample" + }, + { + "path": "fsprovider-sample" + }, + { + "path": "decorator-sample" + }, + { + "path": "contentprovider-sample" + }, + { + "path": "configuration-sample" + }, + { + "path": "completions-sample" + }, + { + "path": "basic-multi-root-sample" + }, + { + "path": "previewhtml-sample" + }, + { + "path": "diagnostics-sample" + }, + { + "path": "extension-deps-sample" + } + ], + "settings": { + "editor.insertSpaces": false + } +} \ No newline at end of file