pico8-ls
pico8-ls copied to clipboard
PICO-8 Language Server
Any pointers how to install pico8-ls for non-vscode setups?
When I'm started typing "end" the auto completion give me this only one proposition : > p8-jp-end -quote which appear to be 」 I'm using the last release 0.5.3
Since 0.2.6 we can write if statement like this `if a==2 do b=1 end` in addition to more traditional `if then` Doing so in VS Code with pico8-ls give some...
If I happen to have a txt file in the same folder, this extension is parsing it and keeping an "error" active in my Problems panel
This version allows to use pico8-ls with sublime text to edit .lua files. The only problem with the original code was some console prints, unexpected by the sublime LSP plugin.
Hi! I'm looking for a pico8 LSP for Sublime Text and I see this the README: > This extension uses the [Language Server Protocol](https://microsoft.github.io/language-server-protocol/), so while it's mainly made for...
Hello! I would like for this extension to be published on [open-vsx.org](https://open-vsx.org/). That way, VSCodium (and other VS Code-like editors that use Open VSX) can see it and keep the...
Wrong formatting on comment after function original: ```lua afunction(parameter)--comment ``` should have been: ```lua afunction(parameter) --comment ``` in fact: ```lua afunction(parameter--comment) ```
When the top of my file looks like this: ``` pico-8 cartridge // http://www.pico-8.com version 41 __lua__ -- sokotiles -- by schoblaska ``` The cart label gets generated like this:...
I saw some unexpected program behavior after autoformatting, and tracked it down to the formatter removing necessary parentheses in math expressions, which changes the order of operations. Simple example: ```...