You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be really nice to have spell support for keyword and module documentation. For example:
*** Settings ***
Documentation could have spell checking here!
*** Keywords ***
Spell Check Keyword
[Documentation] could have spell checking here too!
It might be a bit tricky to actually match the Documentation setting. I'm using regex to match it case insensitively, so I don't think this would work: (setting_statement "Documentation" ...).
Changing the grammar to capture the setting name as a separate node, then matching it with the match? predicate would probably do the trick. It might even be possible without changing the grammar.
It would be really nice to have spell support for keyword and module documentation. For example:
For reference: https://neovim.io/doc/user/treesitter.html#treesitter-highlight-spell
The text was updated successfully, but these errors were encountered: