Jeremy Ong
Jeremy Ong
Ah thanks for the response. Any interested in a supertab `fallback` option of sorts?
I actually looked for this package on vcpkg also. Two things I noticed that might be useful changes before that: - Currently, the `msquic` target is hardcoded as a `SHARED`...
Hey, if you want a task to be joinable, you need to change the `task_t` signature to have `true` as the second template parameter, since joinable tasks incur a small...
Curious about the status of this feature, it's very difficult to switch from the native Visual Studio debugger to the VSCode debugger at the moment because of missing features like...
This only affects the samples right? The samples don't demonstrate a single-pass reduction of anything more than 6 slices, so the assumption is that you can bind the resources you...
Can we just enable that handling? In vim, if you use tab to autocomplete or whatever, the "repeat" command respects the insertion as it should. In fact, overriding this to...
Thanks for the change. It probably makes more sense to use the find_package FindLua module (https://cmake.org/cmake/help/latest/module/FindLua.html) which will populate all the other variables properly too.
`std::function` is indeed good at type erasure but it can make confuse the optimizer a bit when it comes to instruction inlining (in contrast to lambdas).
Hey thanks for the pull request! Forgetting to give registered objects metatable registry access as well was a definite oversight on my part. Looking at the contents...
The problem you're encountering is very similar to the problem you'd encounter when using `auto` with a data structure like `std::vector`. The problem is that the type of `auto result`...