Community
Participate
Working Groups
Find/replace should allow you to use special syntax in the "Replace" field to refer to special characters (eg. \n, \t) as well as parenthesized groups captured from the matched text. Example: Find: (var|function) Replace: \1\t Regular expression: (checked) Should find occurrences of "var" and "function" and insert a tab character after them. See also [1] https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/replace#Specifying_a_string_as_a_parameter
Greetings All! Please consider my pull request https://github.com/eclipse/orion.client/pull/20 to implement this enhancement. I wrote all this code, and I have the right to contribute it to Eclipse under the eclipse.org website terms of use. Regards Adrian
Hi, anaran, I had a quick review of your code and they look good. I will merge them into our master branch very soon. Thanks a lot , -Libing
Merged with http://git.eclipse.org/c/orion/org.eclipse.orion.client.git/commit/?id=fef6691cffbbe2ab808d985fcb84feca0f5a8b43. Thanks again, Anaran.
It looks like this works for "Replace", but not for "Replace All". Entered bug 396224. Cool feature though!