|
|
|
|
|
by mjdwitt
5232 days ago
|
|
"* no easy refactoring. In VS i love how i can just hit F2 on a method name, rename it, VS shows me all the places where it will rename it and pressing OK. This works flawless everytime and makes refactoring so much more painless than working with a scripting language and a text-editor only" Using vim (or sed for whole directories of files) you can do the same thing using a search and replace regex. in vim:
:%s/<find>/<replace>/gc
|
|