Gregory Anders

Results 251 comments of Gregory Anders

Having the same issue when trying the 0.5.0 release this morning. I'm mounting a directory with `-v $HOME/src/my-project:/my-project`, but `/my-project` in the container is empty. `docker inspect` confirms that the...

Like @sergeybe2, I deleted `~/.colima` and `~/.lima` and I also manually specified `--mount-type virtiofs` in the start command per @jclausen's suggestion, and it appears to be working now. I'm not...

>If it does not default to virtiofs when vz is used then it is a bug that should be fixed. I just tried `colima start test -t vz` and `colima...

> @justinmk it doesn't. None of this works because the target terminal buffer may not be in focus on `TermClose`. I tried to set `autocmd TermClose * call nvim_input('')` and...

> @gpanders I did, and as expected, `:bdelete` alone wouldn't help, only `:bdelete!`, but as you can notice, I even tried `:quit` as well. None works. This is a known...

This looks like an issue with the DAP plugin. We're getting off-topic of the issue at hand, so please open a new issue here or with nvim-dap.

You do not need `vim.opt.filetype = "on"`. It is enabled by default. **If you are using Neovim 0.8 or later you do not need to do anything to enable Lua...

Can you share exact reproduction steps (including how you are setting `vim.g.clipboard`)? Setting `vim.g.clipboard` is exactly what Nvim itself is doing so we know that it _should_ work: https://github.com/neovim/neovim/blob/bb032d952bfc692062fceb764ff2742c5bdd3324/runtime/plugin/osc52.lua#L31-L43

https://github.com/neovim/neovim/pull/29117

I wonder if making a generic `Success` highlight group would be a better fit here. The only existing use case I can think of for this is the health checks,...