I'm interested mostly in C++ and method/class name/signature automatic changes.
|
3
|
|
|
|
|
|
I do this a lot, so I'm axiously awaiting other replies too. The only tricks I know are really basic. Here are my best friends in Emacs when refactoring code:
This allows you to do a global search and replace. You'll be doing this a ton when you move methods and commonly-accessed data to other classes or namespaces.
This gives you a display with two buffers side-by side. You can then proceed to load different files in them, and move your cursor from one to the other with
This is how you define a macro in emacs. Any time you find yourself needing to do the same thing over and over to a bunch of code (and it is too complex for query-replace), this is a lifesaver. If you mess up, you can hit (Note: On Windows you can get "Meta" by hitting the Esc key, or holding down Alt). |
||||
|
|
|
For somewhere in between refactoring tools and simple regex, since Emacs 22 you can embed arbitrary elisp expressions in your replacement text, which allows you to do incredibly powerful text manipulation. Steve Yegge wrote a good article on this a while ago. |
||
|
|
|
If you can program in elisp, you can look to combination of cedet + srecode from CEDET libraries - it provide all instruments for this task - find callers of functions, get signature, etc. But you need to create refactory tool yourself, using these instruments |
||||||
|
|
|
A friend of mine was playing with xrefactory and said it worked pretty well. It isn't cheap though. |
||
|
