Kevin Hwang
Kevin Hwang
A full edit will always open all folds, please use a range format. I think `null-ls` can do this. Most language server has diff content before generating `textEdit[]` even for...
FYI: https://github.com/fannheyward/coc-pyright/blob/bae9ce6dce09c67fcd0d15394864553c70951d50/src/formatters/black.ts#L5-L31 https://github.com/fannheyward/coc-pyright/blob/bae9ce6dce09c67fcd0d15394864553c70951d50/src/common.ts#L199-L228
Great, AFAIK, https://github.com/mattn/efm-langserver will diff result to generate multiple `textEdit`
1. `vim.o.fillchars = [[eob: ,fold: ,foldopen:,foldsep: ,foldclose:]]` 2. `vim.o.foldcolumn = '1'` 3. need this PR https://github.com/neovim/neovim/pull/17446 , this PR only changes a few lines, but you must compile the code...
Actually I haven't used that PR, I hacked myself a long ago, and found that PR recently. ```diff diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 2ee7cd44f..8982bd2ee 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@...
For now, must compile Neovim source code.
> What font have you used? The icon is just too small to clickable  `cat alacritty.yml` ```yaml font: normal: family: Hack Nerd Font ``` Search `chevron` in https://www.nerdfonts.com/cheat-sheet
> How do I change the color of filechars? `h FoldColumn`
I am trying my best to imp https://github.com/kevinhwang91/nvim-ufo/issues/24 which I think is better than VSCode UI. Suggestions are welcome.
Not support for now, as a workaround. 1. Add `au FileType org lua require('ufo').detach()` or `au FileType org UfoDetach` 2. Add `vim.cmd('UfoDetach')` under `~/.config/nvim/ftplugin/org.vim` or `~/.config/nvim/ftplugin/org.lua` 3. Correct ufo virt...