jade
jade
> FWIW, we were hit by a similar issue (#7536), and we "fixed" it by disabling such substitutions altogether: https://gitlab.archlinux.org/pacman/pacman/-/merge_requests/176/diffs Since we tree-hash the sources and have a comically overpowered...
Intriguing, I also have a failure of this on my x86_64-linux NixOS machine: ``` thread 'commands::build::out::tests::unix::test_copy_file' panicked at app/buck2_client/src/commands/build/out.rs:544:13: assertion failed: res.success() stack backtrace: 0: rust_begin_unwind at /rustc/9cd60bd2ccc41bc898d2ad86728f14035d2df72d/library/std/src/panicking.rs:695:5 1: core::panicking::panic_fmt...
oh no, `--console none` disables printing where the lint is. um...... that's definitely a bug.
I'm working on fixing this now. Should have a PR out shortly.
More debugging reveals that this is a cause: https://github.com/nvim-treesitter/nvim-treesitter-textobjects/blob/89ebe73cd2836db80a22d9748999ace0241917a5/lua/nvim-treesitter/textobjects/shared.lua#L96-L110 ... which is because treesitter.get_query returns the wrong captures. WHAT. ``` { _processed_patterns = { { directives = { { "make-range!",...
At least part of this is https://github.com/neovim/neovim/issues/35056. Full workaround I am committing in my neovim config: ``` local ts_configs = require('nvim-treesitter.configs') local function reload_ts_module(mod) local config_mod = ts_configs.get_module(mod) if not...
I dunno how to write a meaningful test for this change.