I would have to come in and fight for "advanced text editors". There are two real classes, the simpler style, or the heavy duty style.
Simpler style text editors like jedit or komodo edit(cross-platform), textmate(mac), scribes or geany(linux), notepad++(windows), or any of the like. Often these have basic features like snippets and autocompletion that will aid your coding in a very similar method to an IDE.
My real suggestions, the heavy duty style text editors, are things like vim and emacs. I get the feeling from what you said in your question that you don't really feel like going to the effort of learning one. I personally use Vim primarily, so I can't offer any information on emacs. However, spending about an hour learing vim with vimtutor
can get you working faster than you would on a standard text editor. From there, just through use you will learn the other things that make it faster. If you don't feel like doing this, but would like to dip your toes into vim, try out cream. It's a nice graphical frontend to vim with all the power. However, it has bindings for normal actions, like Ctrl-S for save rather than the vim style :w. It lets you learn some of vim without diving into the deep end. I would suggest though, at some point, if you like cream diving in and learning the underlying vim. I have sped up so much of my coding since I started using vim.
I used true IDEs for a while, but I can't say I am a big fan of them. If you're working on linux I know geany gives a lot of the "Big IDE" feel without the "Big IDE" weight. It also works with just about every language you can throw at it. If there are specific needs you have, we can address the question somewhat better. I feel as though going out of the IDE gets you to know what is going on in the background a little more. I could be wrong and it could just be that I switched out of IDEs at the same time as I started to get the underlying technology by coincidence. YMMV.