markonm
markonm
Please post minimal init.vim and neovim version. I could not reproduce behavior from the gif just by installing gruvbox and despacio. Despacio does use same colors for `Search` and `Visual`...
That happens because the plugin is using two character at the start and the end of substitution string as a markers for highlighting pattern. Markers could be reduced by one...
As a workaround, it should be possible to collect marks' positions, remove them and then use `matchaddpos` to highlight substitution string.
> As a workaround, it should be possible to collect marks' positions, remove them and then use matchaddpos to highlight substitution string. I experimented a bit with this approach but...
I get the delay when tern server shuts itself down after five minutes of inactivity. Logic in `tern_sendBufferIfDirty()` tries to connect to nonexistent tern server. Delay goes away when I...
I use default Windows firewall. It also doesn't help if I turn it off. I added this to make it start new server if old one is missing on BufLeave...
Sounds like https://github.com/ternjs/tern_for_vim/issues/29#issuecomment-286597843 Try adding `let g:tern#arguments = ["--persistent"]` to your vimrc to force tern server not to shut down itself.
It's a bug in Vim. There's a pull request which will, hopefully, be merged to address that problem. https://github.com/vim/vim/pull/517
Hi, it works fine for me. Could you post minimal vimrc and steps to reproduce the problem?