I am using Fakevim in Qt Creator 4.5.0. One of my most frequently used commands in normal vim is :%s/exprA/exprB/gc . However, in Fakevim, this works just like :%s/exprA/exprB/g - it replaces everything, and doesn't let me scan through and choose which replaces to carry out.
I Googled this topic, and couldn't find a similar bug report, or setting that I need to change in Qt Creator. Am I missing something?
Unfortunately, FakeVim doesn't support c
substitution flag. It ignores any unrecognized flag. That's why in FakeVim :%s/exprA/exprB/gc
works same as :%s/exprA/exprB/g
.