Results 12 comments of Liri S

I found the following workaround: ``` onSwipe={(gestureName, gestureState) => { const {dy} = gestureState; if (dy > 0) { // swiped down } else if (dy < 0) { //...

https://krew.sigs.k8s.io/docs/developer-guide/plugin-manifest/

formatted, for future generations ;) ```js const imageRenderer = useCallback(({index, left, top, key, photo}) => ( { openLightbox(e, {photo, index}) }}> {photo.alt} ) ); { viewerIsOpen ? ( ({...x, srcset:...

Why did you decide to implement in Go using yaml nodes instead of the existing tools in `k8s.io/client-go`? i.e https://github.com/postfinance/kubectl-ctx/blob/master/cmd/ctx.go

FSEvents is not supported natively on iOS AFAIK, kqueue should work though.

its not up to `notify`, its not supported by iOS. but `kqueue` as the notifier should work fine

stream is defined at https://github.com/rjeczalik/notify/blob/8c8ecfea2ebaf5e526db43df4ccb39a9bb7955ff/watcher_fsevents_cgo.go#L117 Make sure you build with cgo and the other expected flags I guess

I think most of these warnings were fixed in https://github.com/rjeczalik/notify/pull/215 make sure you using the latest code Anyway, I don't see why deprecation warnings failed the build , you sure...

If you build without cgo you'd actually be using kqueue and not fsevents. fsevents condition is `//go:build darwin && !kqueue && cgo` kqueue condition is `//go:build (darwin && kqueue) ||...

I haven't seen such error on Windows, could it be permissions to the current directory? Did you try different paths?