Johannes Altmanninger

Results 733 comments of Johannes Altmanninger

> I still don't completions for git subtree they're only autoloaded if `git-subtree` is in `$PATH`, which is also required for `git subtree` to work. You might want to install...

> `--exact`, meaning > expand the abbreviation to *exactly* the following string Currently this is not decided inside "expand-abbr": $ bind space bind --preset space self-insert expand-abbr $ bind enter...

> `kak -e "set global startup_info_version $(getconf INT_MAX)"` this works here Probably for the wrong reason: any -e argument disables it kak -e ""

Regarding the OOMs compiling, you could try 1. removing LTO (remove `lto = true` from `Cargo.toml`) 2. adding a swap partition/file though that will be slow If there is enough...

I'm test-driving this (with foot's WIP implementation), see the [`kitty-multiple-cursors`](https://github.com/krobelus/kakoune/commit/kitty-multiple-cursors) branch in https://github.com/krobelus/kakoune here's some screenshots (vertical bar before and after selection, and the unfocused state). The first one feels...

One of the problems I found with my current implementation is that cursors will be painted over UI widgets such as completion menus, which looks wrong. We could work around...

Sorry, I think the reason why I hesitated on this one was that another change already added an optional argument. Technically we could make both arguments optional. Though this command...

I don't know much about atuin, can you clarify how this is supposed to behave? Does it work in zsh? Is the expectation that 1. atuin history is the global...

> I'd prefer to disable Fish's built-in history entirely in favor of > Atuin. Since Atuin already handles my Ctrl+R (global history search) > and up arrow (directory-specific history), it...

This is probably working as expected; fifo buffers are like scratch buffers in that they don't have a disk-backed file. The fifo is only used for (initial) input. Any concrete...