Claudio Bley

Results 293 comments of Claudio Bley

> Anyone have an idea on how to fix this? Seems like you should rebuild / reinstall the clocale gem.

GNU ls (and [scalals](https://github.com/avdv/scalals) :smile:) has these options: ``` --indicator-style STYLE append indicator with style WORD to entry names: none (default), slash (-p), file-type (--file-type), classify (-F) -p, --indicator-style=slash append...

Thanks @ajeetdsouza ! Do you know how to define auto-completion for zoxide too? Such that only directories are completed for `z`...

> zoxide doesn't provide completions for `z` at the moment, although that's something I'm working on. Nice! I am just using `compdef '_files -g "*(/)"' z` currently, which only lists...

Thank you, @ajeetdsouza ! I would be more interested in zsh completions though... :laughing: But I see that version 0.7.1 should have these... I am still on 0.7.0.

> ```shell > /home/project # bazel --version > bazel 7.0.0 > > /home/project # bazel build -c opt ... > Extracting Bazel installation... > Starting local Bazel server and connecting...

Same use case here: I am using buildifier via bazel from a git pre-commit hook, which should only touch the files to be committed and leave other files alone.

OK, I found a workaround: ``` buildifier( name = "buildifier-pre-commit", exclude_patterns = ["*"], mode = "fix", ) ``` This excludes all files by default and just runs on the ones...

I am simply using a `genrule` now to run the buildifier tool with arbitrary arguments. See [digital-asset/daml@`aa9a78f` (#15637)](https://github.com/digital-asset/daml/pull/15637/commits/aa9a78fcae535faa002a22bdbd91b44c49f95c7b)

This is quite related to https://github.com/tweag/rules_haskell/issues/1878 Currently we are checking GHC versions 9.2, 9.4, and 9.6 on CI. Support for GHC 9.8 is planned.