Santos Gallegos

Results 340 comments of Santos Gallegos

Works great on Fedora, Waiting for it to be merged.

I have this for switching fzf commands (the context is not saved, but I think could be done by saving the last inserted text) ```vim " ## FZF let g:fzf_command_prefix...

I'm using deoplete for completion, when a preview window appears neovim is very slow, if I disable indentLine or the preview window, everything is normal. Any idea why is so...

Hi, you need to use the `set_query` function, see https://github.com/nvim-treesitter/nvim-treesitter#adding-queries.

There was some discussion around how to implement this in another way, like using the top level dir `queries` instead of the `after/queries` directory, but it settled on using the...

@dedguy21 hi, are you still having this problem? If so, what OS are you using? I'm not able to reproduce the error, you can also try re-installing with `:TSInstall! jsonc`

@chmln can you try https://github.com/nvim-treesitter/nvim-treesitter/pull/1266?

That looks fast for me :laughing:, I guess that's just slowness from treesitter in general or the queries, since the tree is updated on each change.

Right now all features like incremental selection, indentation, goto, etc work at the buffer level, so they would need to be updated to work at the parser level.

@reisnobre you can add indent queries here https://github.com/nvim-treesitter/nvim-treesitter/tree/master/queries/vue, see https://github.com/nvim-treesitter/nvim-treesitter/blob/master/CONTRIBUTING.md#indents. But indentation is still experimental, so it may not have the good results after adding the query file.