dlants

Results 9 comments of dlants

I think this is an issue with how the motion targets get shown. It seems like it changes the actual text of the buffer, and many linters with live linting...

@vieko does label-mode in vim-sneak not have this issue? I tried looking through that repo and it seems that they use highlighting somehow to display labels though I'm not familiar...

Ah, that clarifies things! I didn't know about the `Etag` directive, and missed it in the output above. Thanks! I think that totally makes sense as the default setting, and...

+1 ... using `--glob` is a very common thing for me as well, and I can't seem to get it to work now. If it's still possible, it would be...

I agree that version control is something that's really fundamental, and based on the approach of helix so far seems like it belongs in the core. I also think it...

> Hey, can you add unit test for this PR ? Thanks Hm. I'm not sure if I can. It seems to me that there's a race condition, which causes...

Stepping through it seems it gets stuck in an infinite loop... it's hitting the "else" step of this: https://github.com/stylus/stylus/blob/dev/lib/functions/index.styl#L266 ``` stylus/lib/functions/index.styl:262 add-property-function = add-property add-property(name, expr) if mixin {name} expr...

Looking at how we get into this situation, I see it first going into `display(flex)` here: https://github.com/stylus/nib/blob/fb3c70cfaac29f4d6efa8d568c29e20ba2dcd42d/lib/nib/flex.styl#L16 We then encounter `add-property` here: https://github.com/stylus/nib/blob/main/lib/nib/vendor.styl#L53 And then get into the infinite loop.

I think there's two problems - adjusting the start of the motion and the end of the motion. The end of the motion is pretty easy - you'd need to...