Adam Regasz-Rethy
Adam Regasz-Rethy
https://github.com/RRethy/nvim-treesitter-textsubjects has single and multiline comment support in the `textsubjects-smart` query, another query could be added specifically for comments.
There's a bug in tree-sitter queries which is blocking on this, you can see it with this query: ```scm (((_) @head . (comment) @_start . (comment)+ @_end (_) @tail) (#not-has-type?...
Thanks for the detailed walkthrough, output makes a lot more sense, also helped in figuring out how the delay(1L)'s were affecting it.
I looked into this a while back and found the issue was on treesitter's end, you can reproduce with a minimal config that only loads nvim-ts-rainbow (iirc) but I never...
There isn't a good solution for this. An older version of this plugin allowed for this and instructions can be found at commit 8b1ff29c09e179ec4513c64f1ef0b23aacbe2343 and in the help file `doc/hexokinase-v1.txt`...
There are many highlighters already (see `:h g:Hexokinase_highlighters`) and you can define your own custom highlighters (see `:h hexokinase-custom-highlighters` and https://github.com/RRethy/vim-hexokinase/blob/master/autoload/hexokinase/highlighters/virtual.vim). I'm not pushing new features to this plugin, only...
I'm not sure I understand. So you have a text file with the following text: ``` \e[00;32m2020-07-22 22:46:19.260\e[00;34m TEST\e[0m end ``` And you want it to be highlighted as something...
> I want it to be highlighted like this: >  > > `\e[00;32m` `\e[00;34m` `\e[0m` is Escape sequences, it only set text color which after it, it does not...
#70 Probably wouldn't apply since https://github.com/dart-lang/sdk/blob/master/pkg/analysis_server/tool/lsp_spec/README.md doesn't implement `documentColor`. When I get a chance I'll look at argb patterns.
Did you run `make hexokinase` in the plugin root. If you are using vim-plug, something along the lines of `Plug 'rrethy/vim-hexokinase', { 'do': 'make hexokinase' }` should work.