Peter Tri Ho

Results 32 comments of Peter Tri Ho

Those are diagnostic marks. Need to have coc or native neovim lsp

@LuKaS0473 Try ```lua require("scrollbar").setup({ folds = false, handle = { color = colors.bg_highlight, }, marks = { Search = { colour = colors.orange }, Error = { colour = colors.error...

Does the file have a lot of diagnostics? I've tested this on a 200k lines file and worked fine.

Could try this: ``` require("scrollbar").setup({ folds = false, handle = { color = colors.bg_highlight, }, marks = { Search = { colour = colors.orange }, Error = { colour =...

Yep, this is a bug when `vim.opt.wrap = true`. I'm unsure of a fix for this at the moment. I believe [this](https://github.com/kevinhwang91/nvim-bqf/blob/9208d5ffc84a791ea81d5ee9f10544430459019e/lua/bqf/magicwin/core.lua#L112-L149) can fix it but I haven't had a...

Yep, sorry been a little busy. Will test and merge it over the weekend

This is something I definitely want to add as a in-built handler and, eventually, add a wiki for other things. I'll investigate further over the weekend, but have you tried:...

Looks like we'll need to handle both `QuickFixCmdPost` and `Filetype qf` autocmds to support qf/location list but the scrollbar render implementation needs to change since it only works with current...

This is looking good. I'll need to test this before I merge this in but do you know if this works with things like ignorecase?

This looks like a good idea (I'll probably look into support both ways)