Calum Sieppert
Calum Sieppert
I think I'm also running into this on vite `5.3.3` > Managed to workaround the issue by using @rollup-plugins/replace. It is less than ideal but got me going again. >...
> Do you know the search term for what this pattern is called so I can learn more? The pattern is just rust's traits, in this case there is a...
@gmemstr I'm not sure exactly what `keywords` did but I think this should do what you need: ```rust use orgize::{Org, ast::Keyword}; use rowan::ast::{support, AstNode}; let org = Org::parse("#+KEY1: VALUE1\n#+KEY2: VALUE2\nabc");...
I had the same problem, I realized that I was only actually starting the subscription (with `stream.next().await`) _after_ I had made my mutation. I had to start the subscription in...
This doesn't seem to be getting any traction so I'm upvoting as well, would be great to have this!
I tried adding file paths for the various external files but this doesn't seem to do the trick. My settings look like this: ```json { "ltex-ls": { "language": "en-CA", "dictionary":...
I started looking into this today, I'm currently trying to figure out a good way to start experimenting with git2, planning to start setting up some tests using the `tests/helpers.rs`...
@altsem What do you think about moving some of the test helper code into the `src` folder? In particular the parts of the helpers that set up a temporary repo....
@altsem I ended up moving them all into `src` because I ran into the issue of how to import the test utils from `src` into `tests` while still excluding them...
Thanks for looking into this that's helpful! I merged my branch with the latest changes today. Currently I have code to set the upstream of a branch like magit does...