Fix error where rename controller wasn't in InstantiationService (#2243)

This commit is contained in:
Kevin Cunnane
2018-08-20 11:58:40 -07:00
committed by GitHub
parent dc2193138d
commit 9c40bd1a23
2 changed files with 4 additions and 3 deletions

View File

@@ -97,7 +97,8 @@ export async function rename(model: ITextModel, position: Position, newName: str
const CONTEXT_RENAME_INPUT_VISIBLE = new RawContextKey<boolean>('renameInputVisible', false);
class RenameController implements IEditorContribution {
// {{SQL CARBON EDIT}}
export class RenameController implements IEditorContribution {
private static readonly ID = 'editor.contrib.renameController';