Skip to content

Commit 68c5574

Browse files
committed
remove gitlens dependency
1 parent e7ae1b0 commit 68c5574

File tree

2 files changed

+23
-4
lines changed

2 files changed

+23
-4
lines changed

package.json

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
"test": "node ./out/test/runTest.js"
3434
},
3535
"extensionDependencies": [
36-
"eamodio.gitlens"
3736
],
3837
"devDependencies": {
3938
"@types/glob": "^7.2.0",
@@ -61,6 +60,26 @@
6160
"description": "Log all DAP messages"
6261
}
6362
}
64-
}
63+
},
64+
"colors": [
65+
{
66+
"id": "debugutils.trailingLineBackgroundColor",
67+
"description": "Specifies the background color of the PerfTips",
68+
"defaults": {
69+
"dark": "#00000000",
70+
"light": "#00000000",
71+
"highContrast": "#00000000"
72+
}
73+
},
74+
{
75+
"id": "debugutils.trailingLineForegroundColor",
76+
"description": "Specifies the foreground color of the PerfTips",
77+
"defaults": {
78+
"dark": "#99999959",
79+
"light": "#99999959",
80+
"highContrast": "#99999999"
81+
}
82+
}
83+
]
6584
}
6685
}

src/perftips.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ export class PerfTipsProvider implements vs.DebugAdapterTracker {
1010
this.decorationType = vs.window.createTextEditorDecorationType({
1111
after: {
1212
margin: '0 0 0 3em',
13-
backgroundColor: new vs.ThemeColor('gitlens.trailingLineBackgroundColor'),
14-
color: new vs.ThemeColor('gitlens.trailingLineForegroundColor'),
13+
backgroundColor: new vs.ThemeColor('debugutils.trailingLineBackgroundColor'),
14+
color: new vs.ThemeColor('debugutils.trailingLineForegroundColor'),
1515
fontWeight: 'normal',
1616
fontStyle: 'normal',
1717
textDecoration: 'none',

0 commit comments

Comments
 (0)