Michael Davis
Michael Davis
This is the expected behavior of the current workspace detection - the crossterm repo's root is the highest directory in the git repository that has a root marker (Cargo.toml). Rust-analyzer...
There's certainly a convention for tree-sitter grammars to have lowercase language names but it looks like it's not enforced by tree-sitter-cli. In this case we can't use lowercase because tree-sitter-bb's...
I think the symlink note is good 👍. Could you add that below the symlinking table in the README too?
Thanks @CptPotato!
One more to remove here: https://github.com/helix-editor/helix/blob/418a622db9d957d09e10ccbc3897d8ac9268dc8e/xtask/src/querycheck.rs#L17
I missed this in the review of the PR that added it but there's a real test failure now from the uppercasing on this line: https://github.com/helix-editor/helix/blob/e25af1f7441fd1eccae580ba2e8e0eebc2be74f8/helix-core/src/syntax.rs#L2278 - could you set...
It looks like this is the block that fails to be parsed correctly: ```scala def updateModel[Model](f: Model => Model): Action[Model, Unit] = for { $model
Vi `:read` is more general - you can read the output of shell commands like `:read !echo "foo"` We already have `shell_insert_output` for that case so I think we should...
Clippy and the auto-formatter (in rust-analyzer) won't work in the integration tests because they're behind a feature flag and look like they aren't included in the module tree until that...