mirror of
https://github.com/hexedtech/codemp-vscode.git
synced 2024-11-22 15:34:49 +01:00
fix: thin cursor borders
This commit is contained in:
parent
0983019175
commit
ace46fe997
1 changed files with 2 additions and 5 deletions
|
@ -44,12 +44,9 @@ export class UserDecoration {
|
||||||
this.decoration.dispose();
|
this.decoration.dispose();
|
||||||
}
|
}
|
||||||
this.decoration = vscode.window.createTextEditorDecorationType({
|
this.decoration = vscode.window.createTextEditorDecorationType({
|
||||||
borderWidth: '5px',
|
borderWidth: '1px',
|
||||||
borderStyle: 'solid',
|
borderStyle: 'solid',
|
||||||
overviewRulerColor: 'blue',
|
borderColor: this.color,
|
||||||
overviewRulerLane: vscode.OverviewRulerLane.Right,
|
|
||||||
light: { borderColor: this.color },
|
|
||||||
dark: { borderColor: this.color },
|
|
||||||
});
|
});
|
||||||
const range_start: vscode.Position = new vscode.Position(event.startRow, event.startCol); // -1?
|
const range_start: vscode.Position = new vscode.Position(event.startRow, event.startCol); // -1?
|
||||||
const range_end: vscode.Position = new vscode.Position(event.endRow, event.endCol); // -1? idk if this works it's kinda funny, should test with someone with a working version of codemp
|
const range_end: vscode.Position = new vscode.Position(event.endRow, event.endCol); // -1? idk if this works it's kinda funny, should test with someone with a working version of codemp
|
||||||
|
|
Loading…
Reference in a new issue