Johannes Altmanninger
Johannes Altmanninger
ok I think I'm close to a fix for the extra middle colon, but where does the extra colon at the end come from? https://raw.githubusercontent.com/apple-opensource-mirror/shell_cmds/4ea11424b80a117ad1e401867b1453bb2362feb3/path_helper/path_helper.c doesn't seem to set it...
nice, that's certainly easier than trying to attach a debugger ;) Makes me wonder why we don't use `path_helper` directly.. We could do `eval "$(/usr/libexec/path_helper -c)"` since we have a...
> it basically blows away anything that comes from man's default search path Right, and surprisingly the default search path has some components interpsersed between `/usr/local/share/man` (which is the 1st...
I pushed a "fix" to the `faithful-macos-manpath` branch. Not sure if we should take it though, it matches macOS behavior but it seems just wrong. fish's current behavior, i.e. ```...
I think I'd prefer a `str` with a custom DSL like https://github.com/kakoune-lsp/kakoune-lsp/pull/765#discussion_r1723939384 because that's probably easier to manipulate with sed/awk and friends. `str-list` is probably fine as well since we...
On Fri, Apr 11, 2025 at 12:33:49PM -0700, Vladimir Bauer wrote: > Is it possible to make `lsp-selection-range` mode (one which is > mapped to v/V) not re-entrant? At the...
Yeah that was a bit reckless. Of course the idea was that, by default, only errors and some rare events should be printed. This is the general convention for Kakoune...
ok in the `logs` branch I silenced some logs and added the `lsp_log_file` option. Unfortunately there are a few language servers that are still somewhat noisy. We may want to...
> Before, every TOML-encoded request and every message to and from the server was getting logged there, which ended up being quite noisy. This sounds a lot like a user...
I have addressed the immediate issue by ignoring the `-v` option. I think most people will agree that we eventually want 1. an obvious way of collecting logs in a...