Remove completed todo comment

This commit is contained in:
dylan 2023-05-06 10:12:48 -07:00
parent 12bc0cb385
commit 4b99599b31

View File

@ -301,7 +301,6 @@ const drawCodeField = (code: string, x: number, y: number, w: number, h: number)
fillRect(x+anchorX*fontWidth-scrollX, y+anchorY*(fontHeight+1)-scrollY, fontWidth+1, fontHeight+1, COLOR.GREEN);
fillRect(x+focusX*fontWidth-scrollX, y+focusY*(fontHeight+1)-scrollY, fontWidth+1, fontHeight+1, COLOR.YELLOW);
}
// TODO: Add syntax highlighting use "npm:js-tokens" maybe?
const tokens = [...tokenize(code)];
let cx = 0;
let cy = 0;