Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
118 changes: 65 additions & 53 deletions README.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

45 changes: 45 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,28 @@
"type": "boolean",
"default": true,
"description": "Whether to show a warning when editing a change or job spec and the editor is set to use spaces instead of tabs"
},
"perforce.changelistLens.enabled": {
"type": "boolean",
"default": true,
"description": "Enable changelist lens feature to display modification information and changelist for each line of code in the editor",
"scope": "window"
},
"perforce.changelistLens.style": {
"type": "string",
"enum": [
"all",
"compact",
"minimalist"
],
"enumDescriptions": [
"Show complete information: user, revision number and time",
"Show compact information: user and revision number",
"Show only revision number"
],
"default": "all",
"description": "Control the information style displayed by the changelist lens",
"scope": "window"
}
}
},
Expand Down Expand Up @@ -961,6 +983,11 @@
"command": "perforce.clearMementos",
"title": "Clear persisted memento data",
"category": "Perforce"
},
{
"command": "perforce.toggleChangelistLens",
"title": "Toggle changelist information display",
"category": "Perforce"
}
],
"submenus": [
Expand Down Expand Up @@ -1775,6 +1802,24 @@
"highContrast": "#BEBEBE"
}
},
{
"id": "perforce.changelistLensForeground",
"description": "Specifies the foreground color of the changelist lens",
"defaults": {
"dark": "#555555",
"light": "#666666",
"highContrast": "#CCCCCC"
}
},
{
"id": "perforce.changelistLensBorder",
"description": "Specifies the border color of the changelist lens",
"defaults": {
"dark": "#333333",
"light": "#CCCCCC",
"highContrast": "#3F7A94"
}
},
{
"id": "perforce.lineHighlightBackgroundColor",
"description": "Specifies the background color of the associated line highlights in annotations",
Expand Down
Loading