Evgeni Chasnovski

Results 148 comments of Evgeni Chasnovski

> you could immediately close stdin after spawning as well. Just FYI, this approach doesn't work for Neovim

Fixed it on my end. The original issue is not an immediate problem for me now. Thanks again, @bfredl! I am hesitant to close this myself, as it might still...

FYI, this seems to reproduce the same issue: - `nvim -u NONE` - `:lua channel = vim.fn.jobstart({ 'nvim', '--clean' }, { rpc = true })` - `:lua vim.rpcrequest(channel, 'nvim_get_mode')`. It...

A follow-up after testing a solution from #21886. Using this way of opening child process solves the issue: ```lua _G.new_child_neovim = function(nvim_executable) vim.fn.jobstart({ nvim_executable or 'nvim', '--clean', '--listen', '/tmp/nvim.pipe' },...

No, not really. I personally don't use it at all right now and am not really a fan of introducing functionality which should follow yet another external specification (DAP). Let's...

> Observe that the cursor moves to the line number column at step 3 and to the menu at step 4. In the terminal the cursor don't move to the...

This indeed looks like a result of neovim/neovim#27858 (more likely [this commit](https://github.com/neovim/neovim/pull/27858/commits/c971f538ab87b537ae4c97bd44167661c5691a2d) in particular). The likely reason this happens is described in [this comment](https://github.com/neovim/neovim/pull/27858#issuecomment-2043317842). From 'mini.clue' side I have not...

> But it looks like you expect it to be a separate block? I would expect that codeblock formatting would take precedence over list items, yes. Mostly because it is...