2017-05-22 20:56:18 +00:00
|
|
|
{
|
|
|
|
"name": "merge-conflict",
|
|
|
|
"publisher": "vscode",
|
2018-02-26 08:48:26 +00:00
|
|
|
"displayName": "%displayName%",
|
|
|
|
"description": "%description%",
|
|
|
|
"icon": "resources/icons/merge-conflict.png",
|
2018-02-27 14:56:35 +00:00
|
|
|
"version": "1.0.0",
|
2019-06-06 09:44:50 +00:00
|
|
|
"license": "MIT",
|
2017-05-22 20:56:18 +00:00
|
|
|
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
|
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.5.0"
|
|
|
|
},
|
|
|
|
"categories": [
|
|
|
|
"Other"
|
|
|
|
],
|
|
|
|
"activationEvents": [
|
|
|
|
"*"
|
|
|
|
],
|
|
|
|
"main": "./out/extension",
|
|
|
|
"scripts": {
|
|
|
|
"compile": "gulp compile-extension:merge-conflict",
|
|
|
|
"watch": "gulp watch-extension:merge-conflict"
|
|
|
|
},
|
|
|
|
"contributes": {
|
|
|
|
"commands": [
|
2017-11-17 04:41:17 +00:00
|
|
|
{
|
|
|
|
"category": "%command.category%",
|
|
|
|
"title": "%command.accept.all-current%",
|
2018-01-16 10:04:49 +00:00
|
|
|
"original": "Accept All Current",
|
2017-11-17 04:41:17 +00:00
|
|
|
"command": "merge-conflict.accept.all-current"
|
|
|
|
},
|
2017-05-22 20:56:18 +00:00
|
|
|
{
|
2017-05-22 21:04:51 +00:00
|
|
|
"category": "%command.category%",
|
|
|
|
"title": "%command.accept.all-incoming%",
|
2018-01-16 10:04:49 +00:00
|
|
|
"original": "Accept All Incoming",
|
2017-05-22 20:56:18 +00:00
|
|
|
"command": "merge-conflict.accept.all-incoming"
|
|
|
|
},
|
|
|
|
{
|
2017-05-22 21:04:51 +00:00
|
|
|
"category": "%command.category%",
|
|
|
|
"title": "%command.accept.all-both%",
|
2018-01-16 10:04:49 +00:00
|
|
|
"original": "Accept All Both",
|
2017-05-22 20:56:18 +00:00
|
|
|
"command": "merge-conflict.accept.all-both"
|
|
|
|
},
|
|
|
|
{
|
2017-05-22 21:04:51 +00:00
|
|
|
"category": "%command.category%",
|
|
|
|
"title": "%command.accept.current%",
|
2018-01-16 10:04:49 +00:00
|
|
|
"original": "Accept Current",
|
2017-05-22 20:56:18 +00:00
|
|
|
"command": "merge-conflict.accept.current"
|
|
|
|
},
|
|
|
|
{
|
2017-05-22 21:04:51 +00:00
|
|
|
"category": "%command.category%",
|
|
|
|
"title": "%command.accept.incoming%",
|
2018-01-16 10:04:49 +00:00
|
|
|
"original": "Accept Incoming",
|
2017-05-22 20:56:18 +00:00
|
|
|
"command": "merge-conflict.accept.incoming"
|
|
|
|
},
|
|
|
|
{
|
2017-05-22 21:04:51 +00:00
|
|
|
"category": "%command.category%",
|
2017-07-22 13:04:25 +00:00
|
|
|
"title": "%command.accept.selection%",
|
2018-01-16 10:04:49 +00:00
|
|
|
"original": "Accept Selection",
|
2017-05-22 20:56:18 +00:00
|
|
|
"command": "merge-conflict.accept.selection"
|
|
|
|
},
|
|
|
|
{
|
2017-05-22 21:04:51 +00:00
|
|
|
"category": "%command.category%",
|
|
|
|
"title": "%command.accept.both%",
|
2018-01-16 10:04:49 +00:00
|
|
|
"original": "Accept Both",
|
2017-05-22 20:56:18 +00:00
|
|
|
"command": "merge-conflict.accept.both"
|
|
|
|
},
|
|
|
|
{
|
2017-05-22 21:04:51 +00:00
|
|
|
"category": "%command.category%",
|
|
|
|
"title": "%command.next%",
|
2018-01-16 10:04:49 +00:00
|
|
|
"original": "Next Conflict",
|
2017-05-22 20:56:18 +00:00
|
|
|
"command": "merge-conflict.next"
|
|
|
|
},
|
|
|
|
{
|
2017-05-22 21:04:51 +00:00
|
|
|
"category": "%command.category%",
|
|
|
|
"title": "%command.previous%",
|
2018-01-16 10:04:49 +00:00
|
|
|
"original": "Previous Conflict",
|
2017-05-22 20:56:18 +00:00
|
|
|
"command": "merge-conflict.previous"
|
|
|
|
},
|
|
|
|
{
|
2017-05-22 21:04:51 +00:00
|
|
|
"category": "%command.category%",
|
|
|
|
"title": "%command.compare%",
|
2018-09-06 12:31:11 +00:00
|
|
|
"original": "Compare Current Conflict",
|
2017-05-22 20:56:18 +00:00
|
|
|
"command": "merge-conflict.compare"
|
|
|
|
}
|
|
|
|
],
|
2018-07-06 03:51:04 +00:00
|
|
|
"menus": {
|
|
|
|
"scm/resourceState/context": [
|
|
|
|
{
|
|
|
|
"command": "merge-conflict.accept.all-current",
|
|
|
|
"when": "scmProvider == git && scmResourceGroup == merge",
|
|
|
|
"group": "1_modification"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "merge-conflict.accept.all-incoming",
|
|
|
|
"when": "scmProvider == git && scmResourceGroup == merge",
|
|
|
|
"group": "1_modification"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2017-05-22 20:56:18 +00:00
|
|
|
"configuration": {
|
2017-05-23 18:54:43 +00:00
|
|
|
"title": "%config.title%",
|
2017-05-22 20:56:18 +00:00
|
|
|
"properties": {
|
2017-05-23 16:50:23 +00:00
|
|
|
"merge-conflict.codeLens.enabled": {
|
2017-05-22 20:56:18 +00:00
|
|
|
"type": "boolean",
|
2017-05-23 16:50:23 +00:00
|
|
|
"description": "%config.codeLensEnabled%",
|
|
|
|
"default": true
|
|
|
|
},
|
|
|
|
"merge-conflict.decorators.enabled": {
|
|
|
|
"type": "boolean",
|
|
|
|
"description": "%config.decoratorsEnabled%",
|
2017-05-22 20:56:18 +00:00
|
|
|
"default": true
|
2018-04-15 00:03:55 +00:00
|
|
|
},
|
|
|
|
"merge-conflict.autoNavigateNextConflict.enabled": {
|
|
|
|
"type": "boolean",
|
|
|
|
"description": "%config.autoNavigateNextConflictEnabled%",
|
2018-10-02 14:00:43 +00:00
|
|
|
"default": false
|
2019-05-23 21:19:09 +00:00
|
|
|
},
|
2019-05-24 22:26:50 +00:00
|
|
|
"merge-conflict.diffViewPosition": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": [
|
|
|
|
"Current",
|
|
|
|
"Beside",
|
|
|
|
"Below"
|
|
|
|
],
|
|
|
|
"description": "%config.diffViewPosition%",
|
2019-05-28 21:54:29 +00:00
|
|
|
"enumDescriptions": [
|
|
|
|
"%config.diffViewPosition.current%",
|
|
|
|
"%config.diffViewPosition.beside%",
|
|
|
|
"%config.diffViewPosition.below%"
|
|
|
|
],
|
2019-05-24 22:26:50 +00:00
|
|
|
"default": "Current"
|
2017-05-22 20:56:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-09-06 12:31:11 +00:00
|
|
|
"vscode-nls": "^4.0.0"
|
2017-05-22 20:56:18 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-06-05 08:20:01 +00:00
|
|
|
"@types/node": "^10.14.8"
|
2017-05-22 20:56:18 +00:00
|
|
|
}
|
2018-09-06 12:31:11 +00:00
|
|
|
}
|