nsfisis
nsfisis
Are `autoindent` and `smartindent` options enabled? https://github.com/nvim-treesitter/nvim-treesitter/pull/2935 > Currently with > > ``` > setlocal autoindent > setlocal smartindent > ``` > > in `after/indent/php.vim` it allows correct indentation >...
I found out that tab indentation prevents autoindent/smartindent from working correctly. ``` /** ``` hit enter, then: ``` /** * (* is expected) ``` If you use space indentation (with...
I tried to build SATySFi by Nix with this branch and the latest `master` (879664ee9e31ef6c3d0c8fc358c4354b0fe0d60f), but failed to build with the following error: ``` error: builder for '/nix/store/pngqw8wyxlrqw9223zzibk4ndm1gdgqb-resolve.drv' failed with...
It is because the wasm binary that php playground internally uses is based on wasm32 spec, not wasm64. Running `echo PHP_INT_MAX;` on php playground shows `2147483647` not `9223372036854775807`.
The standard input/output/error output can be customized via File System API provided by Emscripten. By default, stdin reads values by using `window.prompt()` https://emscripten.org/docs/api_reference/Filesystem-API.html?highlight=stdin#setting-up-standard-i-o-devices > `stdin` will read from the terminal...
@brandonspark > are you OK to make the rest of the change to semgrep/semgrep? Yes, okay. > Here's an example of a corresponding PR where we did this for Rust:...
CI still failed: Accoding to [the build log](https://github.com/gfngfn/SATySFi/actions/runs/12889854668/job/35938066811?pr=470), `opam install . --deps-only` did not install `conf-libpng`: [EDIT] It was because I did not update `satysfi.opam`. I'll fix it soon. [EDIT]...