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
This is likely to due to a check against keyword characters (:help iskeyword). Quick-scope is currently ignoring non-keyword characters assuming they are a break between words that we are interested in highlighting (which following how word movement commands like w work, they would be).
An initial assumption may have been that these characters are generally easier to identify and shouldn't need quick-scope highlighting to quickly be identified if you want to jump to them.
In order to fully support this the block in the highlight pattern search function that checks keyword characters will need to be updated to also check if the character is in g:qs_accepted_chars and consider it for highlighting as well. This update will likely need to be done carefully as it could also break quick-scope's idea of word boundaries.
I want to add non alphanumeric characters in
g:qs_accepted_chars
but it does not work.#
and_
seem to work but others don't. Am, I doing something wrong here?The text was updated successfully, but these errors were encountered: