Steven Lu

Results 162 comments of Steven Lu

Pretty sure the change in display regime of icons from right-aligned to justified is built-in macOS behavior. Issues like this abound in all menu bar apps on github!

Agreed, what is the nature of the fix that 12.1 was supposed to introduce?

Another one: ```zsh ❯ cd $(mktemp -d) git clone --depth 1 -- https://github.com/marlonrichert/zsh-autocomplete.git > .zshrc

I already was using `zstyle ':autocomplete:*' widget-style menu-select`. OK i'll test it some more using the reproduction method.

I did have it included before, and `zstyle ':autocomplete:*' widget-style menu-select` definitely had the intended effect, that is to make the tab not commit to the first suggestion. Maybe I...

> But if you press Shift-Tab again, does it then remove them? It does not. Are you able to reproduce based on my instructions?

> like it does in modern IDEs, where pressing Tab insert the top match. If you want to insert another match, just keep typing until it's the top match —...

OK... I'm dumb and wasn't paying attention. There is a completion result group called `all matches` and that is the last one and is what shift+tab selects. So I finally...

Thank you. As I understand it now, once 5.9 makes the new approach available to implement ZLE widgets without clobbering `$LASTWIDGET`, we could switch implementation to this, and it would...

Yes the explicit whitelist is option 3 and the least maintainable of them all. edit: FWIW my current solution to the issue is to use this whitelist. I think ripgrep...