Matt Keeter

Results 243 comments of Matt Keeter

Even weirder: if I delete the `.jj` folder then run `jj git init` again, it comes back with these files marked as deleted: ```console $ rm -rf .jj $ git...

aha, there are spurious `.git` directories in those two folders: ```console $ find . -name ".git" ./2016/02/.git ./2016/01/.git ./.git ``` This is a weird failure mode, but `jj` seems to...

This has been on my mind, but I have more questions than answers at the moment. I started making a shapes library in [`core.rhai`](https://github.com/mkeeter/fidget/blob/main/fidget/src/rhai/core.rhai), but suspect that's not the right...

I'm looking at this now (see #300 for the first PR). So far, I've made the following (tentative) decisions: - Everything works on `Tree` values, as you suggested - Shapes...

I tried this and failed previously, but agree that your example seems to work! I'll revisit when I'm back at my work computer in a week's time.

Okay, this seems to work with one caveat. I'm using the following type as an opaque handle: ```rust /// Opaque strongly-typed handle #[derive(Default, Debug)] pub struct Index { value: usize,...

I'm revisiting this code now, and discovered that it isn't actually working. Here's the previous example, with one small change: the edge goes from `MyIndex(2)` to `MyIndex(1)`, instead of from...

@RaoulLuque I understand not wanting to review things pending the trait rework. I want to push back a little, though, because the current code is **actively wrong**, not just unimplemented:...

I'm glad to hear about people playing with Fidget! > The first question I have: How can we get bounding box of a shape ? I'm not sure there's a...