1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-02-25 02:46:01 +01:00

Fixed backslashes in replacement text

This commit is contained in:
rmaddy 2003-05-06 21:38:12 +00:00
parent a2c3ee7281
commit 205b06dde0

View File

@ -326,7 +326,7 @@ public class SearchGroup extends AbstractActionGroup
firstMatch = false;
}
String match = sp.vim_regsub_multi(regmatch, lnum, sub, 1, true);
String match = sp.vim_regsub_multi(regmatch, lnum, sub, 1, false);
//logger.debug("found match[" + spos + "," + epos + "] - replace " + match);
int line = lnum + regmatch.startpos[0].lnum;