Johannes Altmanninger
Johannes Altmanninger
Yeah that and the labels are the only differences. Thanks for the feedback, let's close since there seems to be no strong motivation left.
Functional implementation [here](https://github.com/mawww/kakoune/pull/4725), this is indeed a very useful and intuitive feature. Naturally, Gimp has had it for years. I wonder if there are other features we can steal from...
`` is a secret undocumented command to force-redraw the screen (rarely necessary but sometimes useful after scrolling a terminal). This is from the ncurses influence.
The `chktex` output is sent via `window/logMessage`, which probably means that the user has to open some kind of log buffer in their editor. I guess a faithful conversion to...
yeah, the "Command terminated with space" diagnostic is shown just fine However, the "Undefined control sequence" isn't, because it stems from the aux file (see the uri field) ``` Nov...
> The window/logMessage notifications are from the TeX engine (via latexmk) and not chktex got it. The chktex diagnostics work fine already > However, the "Undefined control sequence" isn't, because...
Kind of, but after I delete my undefined control sequence and save, the error is sent again (I guess the aux file is stale)
How about `:!git log`
I see; I guess you could hack the main view to display the truncated body. Or just filter the commits with something like `tig -E --grep='(.*\n){9}'`
Nice find. `%(file_old)` was only implemented for the diff view, we should fix it for the blame view too. I think changing `%(file)` be the new filename is unlikely to...