bfredl
bfredl
> Grouping cursor objects together in hierarchies with effective range data (in user code) would allow for such things as nested snippets that stay “snippety” when the user leaves the...
nvim-lspconfig adds extra delays to the execution of the user's on_attach: ``` -- Save the old _on_attach so that we can reference it via the BufEnter. new_config._on_attach = new_config.on_attach new_config.on_attach...
I think this can be done (single nvim instance solution) without gigantic refactors or additions to screen.c and window.c with one sacrifice: top-level frames will replace tabs in multi-frame mode....
@kovasap #8455 and #6619 are adding infrastructure that lays the groundwork for tackling this. After those are merged we should move forward with this. #8707 will (among a lot of...
That plugin is for the clipboard. What was the mechanism for forwarding cwd? I find nothing relevant in tui/tui.c (in the "working" version). Is it another plugin?
if it is just `/proc/` shenanigans, the TUI could of course change its cwd as well. That would require an ui event for changed cwd, but that might be a...
[windows] init.lua and other lua files can't be loaded if there are non-ASCII characters in pathname
lua's `loadfile()` implementation uses `fopen()` internally. On MS WINDOWS, the standard C API can be configured between behaving _either_ like ca 1985 MS-DOS _or_ latin-1-ish ("ANSI"): > The fopen function...
[windows] init.lua and other lua files can't be loaded if there are non-ASCII characters in pathname
the `io.open` function of the lua io library will be similarily broken. this cannot as easily be replaced from the outside. Perhaps we should patch luajit on windows to use...
can reproduce
the non-msgsep code paths are going to be deleted for nightly very soon, but this would be a hotfix for `release-0.8` ```diff diff --git a/src/nvim/drawscreen.c b/src/nvim/drawscreen.c index fdf70a081c..4ad8f24e5f 100644 ---...