Compare commits

..

2 commits

Author SHA1 Message Date
e1a46c8577 [fix] sync 2025-09-07 22:46:09 +01:00
b89310e659 [fix] sync 2025-09-07 22:30:34 +01:00

View file

@ -47,7 +47,6 @@ $("lint").onclick = async e => {
$("sync").onclick = e => { client.sync(); console.log("XXXsync"); }; $("sync").onclick = e => { client.sync(); console.log("XXXsync"); };
$("format").onclick = e => { $("format").onclick = e => {
client.sync();
console.log("FMT", lsp.formatDocument(view)); console.log("FMT", lsp.formatDocument(view));
}; };
@ -65,8 +64,8 @@ $("load").onchange = e => {
insert: t insert: t
} }
}) })
client.sync(); //client.sync();
console.log("SYNC"); //console.log("SYNC");
}); });
$("load").value = ""; $("load").value = "";
}; };