-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Highlighting Stays On #72
Comments
I installed Neovim (v0.4.4) and did not reproduce this. I used the
in order to run with my Vim config (which has the highlight on keys set in it - line 108) as suggested by the Neovim help. My current guess is that it could be a configuration error or conflict with another plugin or setting, I suggest you try to determine the minimal configuration file that will reproduce the issue. |
@bradford-smith94 thank you for your input. It looks like the issue is "where" I put the directive. If I put it in nvimrc after initializing the plugin, it works. But if I put it in "plugins" folder, it doesn't, even though opening a file and issuing: Any idea why, and where can I place this directive outside of nvimrc/init.vim.? |
Sure, the why is most likely because of the order in which the vim/nvim configuration files are sourced. When the quick-scope plugin file is sourced is when it checks for the value of The builtin help page You can use the command If nothing else works you can put the file in a place that vim/nvim will not automatically load (I like to use |
This should be in the README 😉 |
Added a note to README, also see #98. Closing this issue, as it is now linked in README so finding the relevant discussion should be possible. |
Even though I set
let g:qs_highlight_on_keys = ['f', 'F', 't', 'T']
the highlighting is always on.I am using Neovim v.0.4.4
The text was updated successfully, but these errors were encountered: