Far Se

Results 7 comments of Far Se

Use `SetWinEventHook`. https://github.com/timsneath/win32/issues/509#issuecomment-1162208826 The issue is that it requires ReadMessage() to stay alive, which freezes main thread so you need to put it in a isolate. But when you hot...

> @Far-Se any idea why the isolate remains when hot reloading? Running into the same issue trying to record keyboard combinations on flutter windows Because it's Windows related stuff and...

@thefujii Look at the example You need to add `winHooks.addListener(this);` on initstate and extend class `with WinHookEventListener`

https://github.com/timsneath/win32/discussions/505#discussioncomment-2980147

> Thanks for creating this issue! It looks like you may be using an old version of VS Code, the latest stable release is 1.70.0. Please try upgrading to the...

@looeee @artworkjpm @Er-rchydy 1. Close the server. 2. Add this in settings.json `"liveServer.settings.ignoreFiles":["**"],` 3. Open server. Your code was good, but do not forget to close and open so changes...

Had similar issue. My own Method Package has stopped working after adding this package. The trick is to put `localNotifier.setup` in a delayed Future, you don't need toasts from first...