5 ms·
Tmuxinator especially makes doing the vim + tmux thing so much better because it has nice session support (just type "mux <name>" to bring up a session). I've b
by chameco 13y ago
Tmuxinator especially makes doing the vim + tmux thing so much better because it has nice session support (just type "mux <name>" to bring up a session). I've been using it for about six months now, and my current setup can do anything an IDE can in a fraction of a time.
- mrgoldenbrown 13y agoWhat do you use for automatic refactoring? Are there good command line tools for renaming methods across an entire source tree for example?
- tomsthumb 13y agosed can do in place recursive changes for search patterns. if you use vim search and replace across a file it's pretty much the same.
- mrgoldenbrown 13y agoI was thinking of something more context aware than a simple find/replace. If you're changing MyClass.getFoo() to MyClass.getBar(), you only want to do that on instances of MyClass.
- lsiebert 13y agoIf there is a plugin for intelligent refactoring in vim, I have yet to see it. You can use tabdo or buffdo for multiple files, but the class/object parsing isn't there.