Maxime Coste

Results 177 comments of Maxime Coste

You can do `` to force inserting a space without triggering the auto-insertion in this case, please also not that the `menu` style completions (which auto-select a completion without needing...

I do not remember seeing this issue back when it was opened, I must have not been paying enough attention, this is actually a great idea that might be generalized....

Hi, coming late to this discussion, I am still unclear on how this is supposed to work, as far as I understand the only difference this introduces is that we...

Hum, do you mean then that this hook is inside another autoload file ? Because if it is in the user kakrc it should run after. The existing workaround for...

Not sure if we should remove that lock file on startup, some people use multiple Kakoune sessions in the same project and this change would break that use case. Investigating...

The new process yeah, what I am trying to understand is why the old process exited without removing the lock, or maybe it is actually still running ?

Should'nt the trap run in this case ? Doing some quick testing here, EXIT traps seem to run on SIGTERM and SIGINT, it does not on SIGKILL but I would...

Testing here this is what I get: ``` $ cat test.kak hook global BufWritePost .* %{ nop %sh{ ( trap 'echo > trapped' EXIT; sleep 2s; echo > exited )...

This is weird, `kill` should send SIGTERM by default, so the trap would still trigger. If you send SIGKILL then yes we would leak the lock, but this seems like...

Hum, which shell are you using ? Doing some testing here it seems the EXIT trap runs in bash but not in dash when closing the terminal directly from sway.