Nathan Henrie

Results 108 comments of Nathan Henrie

Same error on Arch ```console $ ls -ld ~/Documents drwxr-xr-x 1 n8henrie n8henrie 16 May 19 2021 /home/n8henrie/Documents $ espanso migrate ERROR: 'main' panicked at 'unable to generate backup directory':...

After going down a bit of a rabbit hole with the `dirs` and `dirs_sys` crates, I figured out that I needed to `sudo pacman -S xdg-user-dirs` and then `xdg-user-dirs-update`, which...

To be clear, that directory *was* available the whole time, but the crate you're depending on didn't know how to find it without those additional steps.

I'm seeing a similar issue since moving to an M1 Mac about a year ago -- every few weeks I notice a trigger suddenly doesn't work, and when I look...

Perhaps some kind of deadlock in JXA evaluation?

After the above suggested it was a problem in the JXA evaluation, I think I figured it out. I had launched MacVim with my hammerspoon keyboard shortcut: ```lua hs.hotkey.bind( hyper,...

I'm also getting this error on 10.15.2, even when I've commented out the entire applescript (or changed the file contents to just `display dialog "foo"`. It runs fine with the...

Something odd is going on. The binding below works as expected -- shows an alert `before`, sleeps for 10, then shows `after`. Hammerspoon remains responsive during the 10 seconds and...

With the below, `after` is not called until after I quit MacVim, during which time Hammerspoon is unresponsive. ```lua hs.hotkey.bind(hyper, "V", function() hs.task.new("/Applications/MacVim.app/Contents/bin/mvim", function(...) hs.alert.show("after") end, { "/tmp/foo.txt", "/tmp/bar.txt", }):start()...