We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0af52a9 commit 8dde417Copy full SHA for 8dde417
src/everything/everything.ts
@@ -127,7 +127,7 @@ export const createServer = () => {
127
logging: {},
128
completions: {},
129
},
130
- instructions,
+ instructions
131
}
132
);
133
@@ -174,12 +174,13 @@ export const createServer = () => {
174
server.notification(message);
175
}, 20000);
176
177
+
178
// Set up update interval for stderr messages
179
stdErrUpdateInterval = setInterval(() => {
180
const shortTimestamp = new Date().toLocaleTimeString([], {
181
hour: "2-digit",
182
minute: "2-digit",
- second: "2-digit",
183
+ second: "2-digit"
184
});
185
server.notification({
186
method: "notifications/stderr",
0 commit comments