With the following vimrc:
set nocompatible " be iMproved, required
if has('vim_starting')
" Required:
source ~/.vim/autoload/plug.vim
endif
call plug#begin()
Plug 'osyo-manga/vim-over'
call plug#end()
In an empty buffer, do :
:%s/foo/bar/g
q:
yyp
ffcwbar<Esc>fb.
I then get in the command window:
%s/foo/bar/g
%s/barbarbar/g
but the expected result would be
%s/foo/bar/g
%s/bar/bar/g