Alexandre Beaulieu

Results 34 comments of Alexandre Beaulieu

Hi @cldog, the DLL was only tested on AD domain controllers, but because of the way that password filters work, it should work for local computers as well. Can you...

Combined with #2 and batching, this would greatly improve the bandwidth usage, at the cost of possibly delaying credential retrieval and data loss if the compromised host gets taken offline...

Thanks for the feedback! I'm currently swamped but I should have time to update the PR this weekend. I like the idea of checking/enabling if the render function is called.

I've managed to get the mode to always display even after a new line. It requires to bind the following zle hooks: ``` zle -N zle-keymap-select geometry-vi-draw zle -N zle-line-pre-redraw...

I've added the logic to properly handle existing ZLE widgets and dynamic prompt updates. I simplified the update logic by using the render function to put the current state on...

Okay, I know why it's not working, and it's a bit of a bummer. The autoload works very well for lazy loading of functions, but unfortunately because geometry makes use...

> As far as I understand it, you are saying that autoload is actually re-sourcing for every subshell, which is worse for performance generally, and not helping us out. Is...

Alright, at this point it should be working. I've added a check to avoid hooking the ZLE widgets if `geometry_vi` is not in either prompt (INFO is not checked because...

If that okay with you, I'll add `${GEOMETRY[VI]}` which will be set when the function has been initialized. This will make it possible to put the initialization logic in the...

After a lot of fiddling around, I found out that this lazy initialization in the render callback will not work for the same reason as the other attempts... the callback...