Patrick Desaulniers

Results 80 comments of Patrick Desaulniers

Thanks for the bug report! I'll take a look at this.

Perhaps the rendering could be improved so that the low end would look clearer. I think the issue is mostly with the current interpolation code, which makes the whole spectrogram...

This has been implemented in the v1.1.0 branch. > On hover would be nice too. For the time being, the frequency and the note are only shown on mouse press....

This could be possible for the Jack standalone version. I don't think that would work with the plugin versions, but I could be wrong :p

This was implemented in the Jack build. You can press F11 to toggle fullscreen mode. It's kind of buggy, though. You might need to press F11 a few times to...

Hi, good question! Perhaps this feature could be implemented in `tl` directly. I have created an issue there: https://github.com/teal-language/tl/issues/451

The crash should be fixed in https://github.com/teal-language/vscode-teal/commit/9154e2ba9b9b7ee713996ca5cc4b5603a0e6332f. With that said, the plugin still cannot resolve the type in this scenario... I think `tl types` needs to be modified in order...

The extension now has basic support for the following features: - Auto-completion (still a bit buggy, I'm working on it) - Go to type definition (which is currently mapped to...

It seems like we could implement this with `onEnterRules.action.appendText` in `language-configuration.json`: https://code.visualstudio.com/api/language-extensions/language-configuration-guide#on-enter-rules EDIT: Nevermind, I think this wouldn't work. Pressing Enter might generate superfluous `end` tokens. We need to insert...

I see that the built-in Lua support in vscode has the same issue: ```lua local x = { end_ = "don't indent me!" } ``` For the time being, I...