Craig Buchek

Results 9 issues of Craig Buchek

When aborting `rake` with Ctrl+C, it outputs `rake aborted!` then dumps a long backtrace. This seems unnecessary, as aborting isn't really an unexpected outcome of pressing Ctrl+C (or sending an...

This is a fix for issue #962.

🏃‍♀️PR: In Progress
🙏 PR: Needs Tests

I reinstalled Mavericks, and now my UTI for `.md` files (as reported by `mdls`) is `dyn.ah62d4rv4ge8043a`. According to [this article on UTIs](http://alastairs-place.net/blog/2012/06/06/utis-are-better-than-you-think-and-heres-why/), that translates to `?0=6:1=md`, which means `UTTypeConformsTo= public.data:public.filename-extension=md`....

I just [read about UUIDv7](https://buildkite.com/blog/goodbye-integers-hello-uuids). It's a [proposed IETF standard](https://datatracker.ietf.org/doc/draft-ietf-uuidrev-rfc4122bis/), in "last call". Other than the base32 encoding, it's got everything we want from ULID. UUIDv7 will be more widely...

Check the command registry, as it includes built-in packages, as well as packages that haven't been activated yet (but will automatically activate when their commands are invoked). I believe this...

Can we default to `editor` instead of `workspace`? It seems like most of the commands expect to run in `editor` context, and all the ones that work in `workspace` also...

I'm trying to add comments to my language. So I added a `%whitespace` directive, similar to the JSON and INI examples. But when my source code starts with a comment,...

I like to use the `SPEC=` frequently, but it's not working (at least not on my current project). It seems to skip ALL the specs. ~~~ RAILS_ENV=test bundle exec rake...

It would be nice to suggest that users run: ~~~shell RAILS_ENV=test bundle exec rake spec:javascript ~~~ instead of ~~~shell bundle exec rake spec:javascript ~~~ The later ends up loading Rails...