long commit decoration

This commit is contained in:
Joao Moreno
2017-01-30 20:17:02 +00:00
parent 1e99f8d8f4
commit e43137f514
4 changed files with 57 additions and 3 deletions

View File

@@ -15,6 +15,7 @@ import { filterEvent, anyEvent } from './util';
import { GitContentProvider } from './contentProvider';
import { AutoFetcher } from './autofetch';
import { MergeDecorator } from './merge';
import { CommitHandler } from './commit';
import * as nls from 'vscode-nls';
const localize = nls.config()();
@@ -48,6 +49,7 @@ async function init(disposables: Disposable[]): Promise<void> {
const syncStatusBar = new SyncStatusBar(model);
const autoFetcher = new AutoFetcher(model);
const mergeDecorator = new MergeDecorator(model);
const commitHandler = new CommitHandler(model);
disposables.push(
commandCenter,
@@ -58,7 +60,8 @@ async function init(disposables: Disposable[]): Promise<void> {
checkoutStatusBar,
syncStatusBar,
autoFetcher,
mergeDecorator
mergeDecorator,
commitHandler
);
}