File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed
extensions/merge-conflict/src Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -48,19 +48,6 @@ export default class ServiceWrapper implements vscode.Disposable {
48
48
}
49
49
50
50
createExtensionConfiguration ( ) : interfaces . IExtensionConfiguration {
51
-
52
- // PRAGMATIC way to avoid conflicting with the new merge editor: when git opts into
53
- // using the merge editor we disable this extension - for the merge editor but also
54
- // for "other" editors
55
- const gitConfig = vscode . workspace . getConfiguration ( 'git' ) ;
56
- if ( gitConfig . get < boolean > ( 'mergeEditor' ) ) {
57
- return {
58
- enableCodeLens : false ,
59
- enableDecorations : false ,
60
- enableEditorOverview : false
61
- } ;
62
- }
63
-
64
51
const workspaceConfiguration = vscode . workspace . getConfiguration ( ConfigurationSectionName ) ;
65
52
const codeLensEnabled : boolean = workspaceConfiguration . get ( 'codeLens.enabled' , true ) ;
66
53
const decoratorsEnabled : boolean = workspaceConfiguration . get ( 'decorators.enabled' , true ) ;
You can’t perform that action at this time.
0 commit comments