strager
strager
The extension uses the `issueSearch` root field. This field is deprecated [1] and, for me, no longer functions properly. This breaks various parts of the extension including the widget showing...
```javascript // error: write '=>' for arrow function const FeatureCard = ({}) =( ); ``` Inspiration: https://x.com/Legend_1234555/status/1921846618875216329 ```javascript // Not an error (but maybe deserves a warning): const FeatureCard =...
```javascript config?.items?.length ?? 0 > 0 // intended: (config?.items?.length ?? 0) > 0 // actual: config?.items?.length ?? (0 > 0) ``` https://x.com/strager/status/1876508636236964158
libvterm sometimes gives us a string fragment with length 1073741823 [1]. When this happens, we attempt to read 1073741823 bytes, overrunning the buffer and causing a segfault. Fix the crash...
I think emacs-libvterm should support OSI 8 hyperlinks: ```sh printf '\e]8;;https://example.com\e\\Hello!\e]8;;\e\\\n' ``` The "Hello!" text should show up as Emacs button text linking to . Technical documentation: https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda#the-escape-sequence
### Describe the bug `Text` is `""` if numlock is enabled on the keyboard. Culprit: https://github.com/charmbracelet/x/blob/19b66ab4499be69e337700b9adf0c550a47830ba/input/driver_windows.go#L468-L471 `cks` is 0x20 (I think) when numlock is pressed. ### Setup - Windows 10...
I registered a ma_sound end callback with `ma_sound_set_end_callback()`. The callback notifies another thread, and that thread queries `ma_sound_is_playing()` and `ma_sound_at_end()` for the sound. I observe that sometimes `ma_sound_is_playing()` is **true**....