Move standalone editor quick open to vs/editor/standalone

This commit is contained in:
Alex Dima 2017-06-20 08:45:32 +02:00
parent 28b5300aaa
commit 1edac424e2
11 changed files with 5 additions and 4 deletions

View file

@ -6,9 +6,9 @@
'use strict';
import 'vs/editor/editor.all';
import 'vs/editor/contrib/quickOpen/browser/quickOutline';
import 'vs/editor/contrib/quickOpen/browser/gotoLine';
import 'vs/editor/contrib/quickOpen/browser/quickCommand';
import 'vs/editor/standalone/browser/quickOpen/quickOutline';
import 'vs/editor/standalone/browser/quickOpen/gotoLine';
import 'vs/editor/standalone/browser/quickOpen/quickCommand';
import 'vs/editor/contrib/inspectTokens/browser/inspectTokens';
import { createMonacoBaseAPI } from 'vs/editor/common/standalone/standaloneBase';

View file

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View file

@ -532,7 +532,6 @@ export class SimpleWorkspaceContextService implements IWorkspaceContextService {
constructor() {
this.legacyWorkspace = { resource: URI.from({ scheme: SimpleWorkspaceContextService.SCHEME, authority: 'model', path: '/' }) };
this.workspace = { id: '4064f6ec-cb38-4ad0-af64-ee6467e63c82', roots: [this.legacyWorkspace.resource], name: this.legacyWorkspace.resource.fsPath };
console.log(this.workspace);
}
public getWorkspace(): ILegacyWorkspace {

View file

@ -204,8 +204,10 @@
"vs/nls",
"vs/css!./**/*",
"**/vs/base/{common,browser}/**",
"**/vs/base/parts/*/{common,browser}/**",
"**/vs/platform/*/{common,browser}/**",
"**/vs/editor/{common,browser}/**",
"**/vs/editor/contrib/quickOpen/**",
"**/vs/editor/standalone/{common,browser}/**"
]
},