On 2/9/06, Victor Kryukov <[EMAIL PROTECTED]> wrote: > > I used to use this combination, but at some point switching between > different buffers become a real pain... And no object browser... How do > you solve this?
I'm not sure exactly which combination you're talking about, but I assume it's vim+ipython. Switching buffers: "If you don't use windows nnoremap <C-N> :next<Enter> nnoremap <C-P> :prev<Enter> "If you do use windows (and do it via vsplit) map <C-J> <C-W>j<C-W>_ map <C-k> <C-W>k<C-W>_ I've never felt the need for an object browser. I search for 'def <function>' or 'class <class>' if it's open in vim or if I'm in ipython %ed <class or function>. If I was more proactive I could run ctags on my projects and jump around that way.

