Long Nguyen

Results 134 comments of Long Nguyen

You're not importing it properly ```javascript import Fa, { FaLayers, FaLayersText } from "svelte-fa"; ``` Please read the README

Seems like the exports in `package.json` isn't configured properly. Svelte picks up on the `svelte` field, which only points to the main `.svelte` file, not the index file.

You can look at the `Plugin` type and the `gfm` plugin wrapper to see how to add a plugin yourself

You supply the option as the 2nd array element https://github.com/ssssota/svelte-exmarkdown/blob/98af8a6455875da21d8759d7650accc8b8058ad3/src/lib/gfm/index.ts#L5

Just so you know, I'm a top mania player 😊 Anyway, in osu!mania, there's not much on the screen aside from notes falling down, so the timings can be very...

![image](https://github.com/goodtrailer/soyokaze/assets/15729831/29bcf3b6-c2b6-48c2-9515-9d004d81b484) It does show up for me in the centralized binding settings Also, by "fixed", I mean that you don't have to move your hands between different keys, but that...

libc++ has switched to a different mechanism for enabling debug checks, called [Hardening Modes](https://releases.llvm.org/18.1.0/projects/libcxx/docs/Hardening.html), which will not affect the ABI. Now, it's only a question of whether there's a benefit...

`fcloseall()` isn't available, but `_fcloseall()` [is available](https://github.com/mingw-w64/mingw-w64/blob/1ec7fa221644b6d02a617a47f6e80f5069cdc893/mingw-w64-headers/crt/stdio.h#L627). Are you using the right name?

Probably just mean "ready to use after extracting". Users are expected to know how to setup environment variables and the like.

Seems like your code is currently dependent on MSVC. I'd advise you to refactor and use what's available on both compilers (example: use `_WIN32` instead of `_MSC_VER` to check for...