Screwtapello
Screwtapello
Thank you very much for making this PR! I'm sorry the documentation you were looking for was misleading, but I appreciate your effort in helping to clean it up.
Does this new ranking algorithm affect https://github.com/mawww/kakoune/issues/1709#issuecomment-1053541569 ?
For Kakoune to recognise a key, the terminal it's running inside must send a particular byte sequence when the key is pressed. For example, `xterm` lets you set the `*VT100.Translations`...
I've been bitten by this so many times on so many projects. I wish there was a way to make git auto-expand a string like `$Version:$` to `$(git describe --tags...
Kakoune handles LF versus CRLF with the `eolformat` option. When opening a file, if *every* line ends with CRLF, then Kakoune sets `eolformat=crlf` and hides the CR characters. However, if...
Can you write that scratch buffer to disk and attach it to this issue, so we can see what exact bytes are causing problems? Also, is your wrap command literally...
> How do I do that? Just `:w ~/scratch.txt`, click on the "Attach files by dragging & dropping" text below this comment, and your browser should present a file-picker to...
OK, I see what's going on here. Here's one of the lines that's actually causing problems: ``` $ head -20 scratch.txt | tail -1 | hexdump -C 00000000 54 68...
Kakoune has [an undo tree](https://github.com/mawww/kakoune/wiki/Undo-tree), not just linear history. Therefore, it doesn't make much sense for a HistoryNode to have "a redo child" since it may have many redo children....
> ... you jump to a different, internal history node with some kind of undo-tree plugin. This node has multiple children and doesn’t appear on the path from the root...