Esequiel Albornoz

Results 3 comments of Esequiel Albornoz

I bypassed this issue by adding the `.html2` extension to the file and then adding an auto command that set the filetype `html` to the `.html2` files ```lua vim.cmd [[...

Hello there! I've ended up creating an external function that returns the expected types like this ```ts function applyNodeChangesWithTypes(changes: NodeChange[], nodes: CustomNode[]) { // @ts-ignore return applyNodeChanges(changes, nodes) as unknown...

Running the test in parallel speeds up the process, so if I run the test with the `-p 1`, it defeats the whole point of using the `t.Parallel()`. For now,...