Dave Ceddia
Dave Ceddia
I just found this and it seems awesome, but I wanted to customize the bindings too. I'm using zsh, and in the zsh setup the section that binds the keys...
@dansiviter this SO answer might be helpful: http://stackoverflow.com/a/32943389/465887 I'm working on enabling websocket proxying in Create React App (https://github.com/facebookincubator/create-react-app/issues/1013) and it looks like I can manually watch for the "upgrade"...
Deleting the line is enough to get it working once, but it'll get overwritten, won't work across machines, etc. The patching approach seems like a more resilient way to go,...
I got an error too. Try clicking the Refresh button inside CodeSandbox, this seemed to get it going. Not sure why it's failing on load though.
It looks like they rearranged their extensions. I searched for "stl" and found this page, which looks to be the same thing: https://extensions.sketchup.com/extension/412723d4-1f7a-4a5f-b866-281a3e223337/sketch-up-stl It requires login, but it's a free...
I ran into this too. I thought it might have something to do with the [acceptsFirstMouse](https://developer.apple.com/documentation/appkit/nsview/1483410-acceptsfirstmouse) method. It looks like at least tao is overriding that to be `true` [here](https://github.com/tauri-apps/tao/blob/dev/src/platform_impl/macos/view.rs#L1181-L1183)...
If it were special-cased for only `data-tauri-drag-region` I think it'd break strategies like [this one](https://github.com/tauri-apps/tauri/issues/1656#issuecomment-1161495124) that make most of the window draggable, which would be a bummer. Maybe it could...
Ooh yeah, probably need to handle symlinks at extraction time too. I imagine otherwise it’ll end up creating hard directories and files and/or falling over.
I added a test to check that symlinks inside frameworks extract correctly, and updated the `extract` function to handle symlinks. I noticed the built-in `entry.unpack()` function seems to handle all...
Even though the test is passing and the symlinks look good after a test run, this isn't working in my actual app. Not sure why yet... Update: oof, nevermind me....