William Hou

Results 12 issues of William Hou

**The Bug** I cannot switch between Caret mode and Visual mode. If I press v, and I go into visual mode, pressing c does nothing except for cancelling the selection....

Just wondering if we could add some stub files, because the only thing that pyglm harder to use than numpy is that working in VScode or any editor, there's no...

### The Problem If you manually turn down your input volume to 0 while mute-me is not muted, the muting is reversed. This is problematic because some apps like discord...

### The Problem ```KeyboardStateExtended.WasKeyJustDown``` checks if the previous keyboard state was down, and if the current keyboard state is Up. https://github.com/craftworkgames/MonoGame.Extended/blob/c90365211eaae3ed092d748230f4cbebe490d1b9/src/cs/MonoGame.Extended.Input/KeyboardStateExtended.cs#L26 However, ```MouseStateExtended.WasButtonJustDown```, https://github.com/craftworkgames/MonoGame.Extended/blob/c90365211eaae3ed092d748230f4cbebe490d1b9/src/cs/MonoGame.Extended.Input/MouseStateExtended.cs#L66 which calls the ```WasJustPressed``` method, checks...

I don't know if this is a mac problem, but when I run this simple code: ``` import pyglet def callback(dt): print(f"{1/dt:.3f} FPS") pyglet.clock.schedule_interval(callback, 1/60) pyglet.app.run() ``` The callback runs...

bug
help wanted
mac
reproducible

Could Cython support be added? A symlink would probably work `configs/python.lua -> cython.lua`

I used to use https://github.com/Vimjas/vim-python-pep8-indent for python indentation, and it worked for both Python and Cython. After I transition to Treesittter Indentation, there's a lot less lag, but it doesn't...

enhancement

Setting `config.exit = true` doesn't override the default options. The heads for `h, e, r` doesn't exit, and I have to explicitly set exit to true for each head to...

I'm trying to add my base_dirs providing a list of all my work directories, but only some get added for some reason. So I tested with just adding "~/", and...

```cpp int main() { asio::io_context context; try { asio::ip::tcp::resolver resolver(context); auto endpoints = resolver.resolve("a", "10"); } catch (std::exception& e) { std::cerr