summaryrefslogtreecommitdiff
path: root/extension
diff options
context:
space:
mode:
Diffstat (limited to 'extension')
-rw-r--r--extension/src/suggestions.ts16
1 files changed, 8 insertions, 8 deletions
diff --git a/extension/src/suggestions.ts b/extension/src/suggestions.ts
index 6e5f52ac..c9e29ed5 100644
--- a/extension/src/suggestions.ts
+++ b/extension/src/suggestions.ts
@@ -37,18 +37,18 @@ const oldDecorationType = vscode.window.createTextEditorDecorationType({
const newSelDecorationType = vscode.window.createTextEditorDecorationType({
backgroundColor: "rgb(0, 255, 0, 0.25)",
isWholeLine: true,
- after: {
- contentText: "Press ctrl+shift+enter to accept",
- margin: "0 0 0 1em",
- },
+ // after: {
+ // contentText: "Press ctrl+shift+enter to accept",
+ // margin: "0 0 0 1em",
+ // },
});
const oldSelDecorationType = vscode.window.createTextEditorDecorationType({
backgroundColor: "rgb(255, 0, 0, 0.25)",
isWholeLine: true,
- after: {
- contentText: "Press ctrl+shift+enter to reject",
- margin: "0 0 0 1em",
- },
+ // after: {
+ // contentText: "Press ctrl+shift+enter to reject",
+ // margin: "0 0 0 1em",
+ // },
});
export function rerenderDecorations(editorUri: string) {