Taupiqueur
Taupiqueur
According to [diff], the traditional output format uses ‘a’ for “added”, ‘d’ for “deleted” and ‘c’ for “changed”. [diff]: https://en.wikipedia.org/wiki/Diff
The `connect` command is not required in [alacritty.kak] and [tmux.kak]. [alacritty.kak]: https://github.com/alexherbo2/alacritty.kak [tmux.kak]: https://github.com/alexherbo2/tmux.kak I think to remove the `connect` command—the `terminal` commands should let know they run from Kakoune....
I’m not fond of releases. 😭
I have no idea. Can you try with another terminal, such as [Alacritty]? [Alacritty]: https://github.com/alacritty/alacritty
Yep, I think also it is out of the scope of `sycli`. Just wanted to throw the idea because I actually wanted to do some filtering and it is not...
I don’t know. Is there a rationale why not?
https://github.com/robertmeta/plug.kak/issues/9#issuecomment-703939952
@Pantoofle If you source and require the module immediately, you will introduce order loading issues for the plugins having dependencies. You will also break the `ModuleLoaded` hook for the later...
`connect.kak` ``` kak provide-module connect %{ } ``` `yank-ring-connect.kak` ``` kak hook global ModuleLoaded connect %{ require-module yank-ring-connect } provide-module yank-ring-connect %{ } ``` `kakrc` ``` kak source connect.kak require-module...