Chaney Zorn
Chaney Zorn
@nanotee It works, thank you. I was confused with nil in lua. now I get it. still wish to have a obvious prompt when failed on timeout. It's hard to...
@wbthomason I tested it and find a bug: ``` Error executing vim.schedule lua callback: ...nvim/site/pack/packer/opt/packer.nvim/lua/packer/log.lua:3: Vim(echomsg):E121: Undefined variable: git ``` it seems like `vim.inspect(cmd)` return a string like this `"git"`,...
@wbthomason It fixes the bug ~ But I noticed that another message will be print after git clone action finished, which scrolls up the echom output: ``` [packer] Killing git...
 @wbthomason It dosen't show the timeout. I can only see the timeout msg by using `:messages`.
Mounting remote files locally such as sshfs under poor network is not friendly for local git, and git operations become terribly slow.
> I thought the thread is about the opposite. Doesn't Neovim already support remote server's environment with nvim --headless --listen 0.0.0.0:8080 and nvim --server=neovim.com:8080? As @jdrouhard mentioned above, remote TUI...
Hi, I've used both indent-blankline.nvim and [mini.indent](https://github.com/echasnovski/mini.nvim/blob/main/readmes/mini-indentscope.md) at same time. And so far everything looks fine. Look at following screenshot : - dim indent line comes from indent-blankline.nvim; - solid...
How about call `enable` again: ``` local nls = require("null-ls") nls.enable({ name = "cspell", method = nls.methods.DIAGNOSTICS }) ``` I use it to refresh spell check diagnostics.