Indiana Kernick

Results 14 issues of Indiana Kernick

The virtual key code constants are used in the `wVk` field of the [`KEYBDINPUT`](https://github.com/retep998/winapi-rs/blob/2f76bdea3a79817ccfab496fbd1786d5a697387b/src/um/winuser.rs#L3048) struct which has the type `WORD`. The contributing guidelines say that _"The type of the constant...

Virtual key codes for A-Z and 0-9 are defined on [MSDN](https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes) but they aren't defined as constants in the Windows API headers. `VK_A` does not exist and so it doesn't...

I noticed a lot of latency and jitteriness. It turned out that `key_click` was taking 43 milliseconds to run! So I went to investigate and found that `key_click` sleeps for...

question
macOS

Addresses #82 and makes it possible to trigger a double click on macOS

I have this indented paragraph: ```html Text ``` When this is converted to a sequence of delta ops via Quill's clipboard module, the result is this: ```js [ { insert:...

`visit_pointers` passes the member variable pointers to the given callable. At this point, the `constexpr`-ness of the pointer is lost. `visit_accessors` passes `accessor` objects to the given callable. `accessor` has...

Being able to have random things produce deterministic and consistent results is occasionally useful.

### What happened? I'm finding that when certain characters are used in headings, the links are broken only when they are parsed by Dataview. In my case, I have a...

bug

### What happened? I'm using CSV files in Obsidian but I'm giving them a `.md` extension which has several benefits: - I can open and edit the file in Obsidian....

bug

I'm inspecting Zod values at runtime. I've run into a situation where I would like to use branded types but I've found that the brand isn't available at runtime. The...

enhancement