vscode-flix
vscode-flix copied to clipboard
Fixes #393
If unsaved changes happen in the duration between a `.flix`-document being opened, and the extension starting up, the extension will not pick them up. Instead, the extension only looks at...
i.e. remove the check
The currently used file-system watcher does not report when a parent folder containing source files is deleted. For example, deleting `src/` does not register that `src/Main.flix` has been deleted.
We now have some tests for HoverProvider and for diagnostics. We should also have a few tests for each other provider. https://github.com/flix/flix/tree/master/main/src/ca/uwaterloo/flix/api/lsp/provider It would be nice if we could group...
What would it require to make the Flix extension work with a single file? I can think of two approaches: - We just grap the directory of the open file...
It would be nice if we could (somehow) test (some of): ``` apiAddUri = 'api/addUri', apiRemUri = 'api/remUri', apiAddPkg = 'api/addPkg', apiRemPkg = 'api/remPkg', apiAddJar = 'api/addJar', apiRemJar = 'api/remJar',...
One file at a time. Probably best to have tests ready first.
All these functions: - connectToSocket - initialiseSocket - tryToConnect seem overly complicated. Can we delete all of them, start from scratch, and see how much we get for free with...
Suggested on Gitter