Folke Lemaitre
Folke Lemaitre
### Feature already in Vim? _No response_ ### Feature description Currently, `input()` is handled by `cmdline_show` and `confirm()` is handled by `msg_show.confirm`. There are no events yet to know theres...
### Discussed in https://github.com/LazyVim/LazyVim/discussions/506 Originally posted by **jcha0713** March 31, 2023 LazyVim is an excellent starting point for beginners using Neovim, and I would like to introduce this project to...
Initial support for `pkg.json` and `lazy.lua` files part of a plugin repo. Goals: - support the [pkg.json](https://github.com/nvim-lua/nvim-package-specification/issues/41) with a lazy extension in `lazy` - `lazy` can contain any valid lazy...
### Problem I just read up about `SafeState` and something like this (`SafeUIState`) could be really useful for `vim.ui_attach` when triggered: * right before `getchar` * right before `cmdpreview_may_show` *...
### Problem This is a tracking issue for snippets I encountered that fail to parse using `vim.snippet.expand` # Snippets - [ ] Recursive placeholders don't seem to be supported ```lua...
### Problem On NEovim nightly, but **not** on **0.10.0**, I sometimes get segfaults when undoing. stack trace: ```c #0 0x0000746da4456e44 in ?? () from /usr/lib/libc.so.6 #1 0x0000746da43fea30 in raise ()...
### Did you check the docs? - [X] I have read all the LazyVim docs ### Is your feature request related to a problem? Please describe. tsserver now supports plugins....
This is not really a bug report, but maybe something to add to the wiki? This is a work-around I use in **LazyVim** to use [nvim-ts-context-commentstring](https://github.com/JoosepAlviste/nvim-ts-context-commentstring) together with native comments:...
Hi @folke, I tried it out, and it's not exactly what I expected from a call-hierarchy UI. In such UI I expect the incoming calls entries to recursively have their...
### Problem The code below will execute the autocmd recursively. This is of course a simplified repro. The one I encountered in the wild was not so obvious. ```lua vim.api.nvim_create_autocmd("User",...