Archive for the ‘emacs’ Category

xemacs - how to use replace-regexp

Tuesday, September 9th, 2008

The documentation available is terse on how to use the replace-regexp function.  Lately I have needed to do a rather large number of complex replacement's across code.  Here are some things that I should definitely remember next time: M-x replace-regexp RET \(.*\)-safe RET \1 RET Parenthesis used for matching values for replace ...