File tree Expand file tree Collapse file tree 5 files changed +8
-10
lines changed Expand file tree Collapse file tree 5 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 73
73
],
74
74
"git.branchProtectionPrompt" : " alwaysCommitToNewBranch" ,
75
75
"git.branchRandomName.enable" : true ,
76
+ "git.mergeEditor" : true ,
76
77
"remote.extensionKind" : {
77
78
"msjsdiag.debugger-for-chrome" : " workspace"
78
79
},
Original file line number Diff line number Diff line change 2500
2500
"markdownDescription" : " %config.logLevel%" ,
2501
2501
"scope" : " window"
2502
2502
},
2503
- "git.experimental. mergeEditor" : {
2503
+ "git.mergeEditor" : {
2504
2504
"type" : " boolean" ,
2505
2505
"default" : false ,
2506
- "markdownDescription" : " %config.experimental.mergeEditor%" ,
2507
- "scope" : " window" ,
2508
- "tags" : [
2509
- " experimental"
2510
- ]
2506
+ "markdownDescription" : " %config.mergeEditor%" ,
2507
+ "scope" : " window"
2511
2508
}
2512
2509
}
2513
2510
},
Original file line number Diff line number Diff line change 243
243
"config.logLevel.error" : " Log only error, and critical information" ,
244
244
"config.logLevel.critical" : " Log only critical information" ,
245
245
"config.logLevel.off" : " Log nothing" ,
246
- "config.experimental. mergeEditor" : " Open the _experimental_ merge editor for files that are currently under conflict." ,
246
+ "config.mergeEditor" : " Open the merge editor for files that are currently under conflict." ,
247
247
"submenu.explorer" : " Git" ,
248
248
"submenu.commit" : " Commit" ,
249
249
"submenu.commit.amend" : " Amend" ,
Original file line number Diff line number Diff line change @@ -616,7 +616,7 @@ class ResourceCommandResolver {
616
616
617
617
if ( ! resource . leftUri ) {
618
618
const bothModified = resource . type === Status . BOTH_MODIFIED ;
619
- if ( resource . rightUri && bothModified && workspace . getConfiguration ( 'git' ) . get < boolean > ( 'experimental. mergeEditor' , false ) ) {
619
+ if ( resource . rightUri && bothModified && workspace . getConfiguration ( 'git' ) . get < boolean > ( 'mergeEditor' , false ) ) {
620
620
return {
621
621
command : '_git.openMergeEditor' ,
622
622
title : localize ( 'open.merge' , "Open Merge" ) ,
@@ -935,7 +935,7 @@ export class Repository implements Disposable {
935
935
updateIndexGroupVisibility ( ) ;
936
936
937
937
workspace . onDidChangeConfiguration ( e => {
938
- if ( e . affectsConfiguration ( 'git.experimental. mergeEditor' ) ) {
938
+ if ( e . affectsConfiguration ( 'git.mergeEditor' ) ) {
939
939
this . mergeGroup . resourceStates = this . mergeGroup . resourceStates . map ( r => r . clone ( ) ) ;
940
940
}
941
941
} , undefined , this . disposables ) ;
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export default class ServiceWrapper implements vscode.Disposable {
53
53
// using the merge editor we disable this extension - for the merge editor but also
54
54
// for "other" editors
55
55
const gitConfig = vscode . workspace . getConfiguration ( 'git' ) ;
56
- if ( gitConfig . get < boolean > ( 'experimental. mergeEditor' ) ) {
56
+ if ( gitConfig . get < boolean > ( 'mergeEditor' ) ) {
57
57
return {
58
58
enableCodeLens : false ,
59
59
enableDecorations : false ,
You can’t perform that action at this time.
0 commit comments