Suggestions for TextMate's Search and Replace
Like so many other programmers, I adore TextMate. For that reasons, here are two simple features that I’d enjoy seeing in the next version:
- A case-preserving search and replace tool. If I search for a string like
my_class
and want to replace it withmy_new_class
, I’d likemy_class
to transform intomy_new_class
at the same time thatMyClass
transforms intoMyNewClass
. - A version of search and replace that also edits filenames. If I replace
MyClass
withMyNewClass
everywhere, I’d like to have the file namedMyClass.java
renamed toMyNewClass.java
at the same time. Both of these would save me from a ton of stupid code drift problems while performing a global search and replace. Do other people think these are interesting enough to merit suggesting them directly to Allan Oddgaard?