Luis Calle

Results 85 comments of Luis Calle

And what does `:verbose set completefunc?` show?

This approach doesnt' work because the `:COQdeps` command starts a process in a terminal and doing `:qa` immediately after finishes Neovim befor the process has finished. The command simply calls...

```lua COQsources = COQsources or {} local uid = 1234 COQsources[uid] = { name = "dict", fn = function(args, callback) local file = io.open "test" if not file then callback()...

This is happening because Windows can't move/delete/rename files/executables while they are opened. Probably you all were using these parsers while you executed the `:TSUpdate` command, hence the error. I guess...

> Thank you for contributing 🙏! Looks like are some merits to both this and https://github.com/andymass/vim-matchup/pull/330, I will take bits of both. Since they are extensive I will likely merge...

> Any guidance for users to migrate? Users simply need to add ```lua vim.g.matchup_treesitter_enabled = true ``` or ```vim g:matchup_treesitter_enabled = v:true ``` to their configs. They could also use...

> Use of parser:parse(nil) will yield different results depending on presence of treesitter highlighting. Either the code that loops over all trees needs to be removed, or parser needs to...

@peter-bread that's not because of this PR (as far as I can tell). That happens simply because there is no treesitter capture for a function call and the regex engine...

Thanks for the example @peter-bread , I now understand the issue properly. The issue was an oversight on my side when modifying the vimscript side of the codebase. It should...

> Is this a good enough fix? In my opinion, it looks good enough. I also don't know why the builtin `gcc` is creating unloaded buffers, but given that treesitter...