Update editor.html

This commit is contained in:
Namhyeon Go 2025-03-17 17:47:44 +09:00
parent 01e94830e7
commit 07991329fc

View File

@ -184,7 +184,7 @@
const range = new monaco.Range(position.lineNumber, position.column, position.lineNumber, position.column);
editor.executeEdits("my-source", [{
range: range,
text: text,
text: "\n" + text,
forceMoveMarkers: true
}]);
resizeEditor();
@ -234,7 +234,7 @@
return;
}
appendTextToEditor("\n\n// " + promptMessage + "... Thinking with Generative AI...");
appendTextToEditor("\n// " + promptMessage + "... Thinking with Generative AI...");
(async function () {
const targetWsUrl = await getTargetByUrl('copilot.microsoft.com');