diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-27 23:35:49 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-27 23:35:49 -0700 |
commit | 69784df58a7b0f6aaebd6eb7f7c260a63fc36055 (patch) | |
tree | be6c13e68bbbc004f37a1890645e06f2d354e2a3 /extension/src/suggestions.ts | |
parent | 951ab7ca88a56502bbea635ad34ef9adb2403d37 (diff) | |
download | sncontinue-69784df58a7b0f6aaebd6eb7f7c260a63fc36055.tar.gz sncontinue-69784df58a7b0f6aaebd6eb7f7c260a63fc36055.tar.bz2 sncontinue-69784df58a7b0f6aaebd6eb7f7c260a63fc36055.zip |
use a more esoteric port than 8000 (65432)
Diffstat (limited to 'extension/src/suggestions.ts')
-rw-r--r-- | extension/src/suggestions.ts | 16 |
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) { |