Ryo Hirayama
Ryo Hirayama
Here's my way. ```elixir @sleep_time_on_error 100 defp spawn_recv_loop(socket) do pid = self() spawn(fn -> for _ send pid, {:message, message} {:error, error} -> send pid, {:error, error} :timer.sleep(@sleep_time_on_error) end end...
https://github.com/rust-windowing/winit/pull/2188 is steady progress. @thiolliere Nice work! Could you submit a pull-req? It should be helpful for platforms except for the Web. Also, I plan to use this feature for...
- [x] have one callback per event - [x] correct use of `prevent_default` - [x] change the changelog expression with "breaking change" - [x] update the documentation for the Touch...
Oh, I may misunderstand the treatment of the y-axis in winit. https://docs.rs/winit/latest/winit/event/enum.WindowEvent.html#variant.CursorMoved > (x,y) coords in pixels relative to the top-left corner of the window. Because the range of this...
Apple Pencil emits pointer events with `pointer_type = "pen"`. Does anyone know how winit handles Apple Pencil on iOS target? If it handles it as touches, we need to handle...
I'm finally confident that we don't need the y-flip, and it's ready to merge. I don't think we should support pen events for now because other platforms do not support...
I really need this feature to implement such a rich mouse hover experience, e.g., hovering sign columns shows git hunk preview.
Can I close this? #134 has been opened, and this cannot be resolved until winit merges it.
https://github.com/rust-windowing/winit/pull/2188 have been merged!
This is what I was going to fix. The `range` field seems to be not defined in Neovim docs and some LSP, e.g. lua-ls, emit diagnostic items with `range` field...