I use supertab cntn. http://www.vim.org/scripts/script.php?script_id=1643
it has a smart mode that "knows" when to use omni-complete
you need vim with py support compiled (think vim-gtk on ubuntu does
that)

other plugins that I use are
http://www.vim.org/scripts/script.php?script_id=521
http://www.vim.org/scripts/script.php?script_id=2981
http://www.vim.org/scripts/script.php?script_id=1658
http://vim-taglist.sourceforge.net/

if you have questions about the plug-ins feel free to ask

In my .vimrc I got
" 4 spaces for tab in python sts for deleting 4 spaces on backspace
autocmd FileType python set ai sw=4 sts=4 et

" open new tab with ctrl+t circle with ctrl+j ctrl+h
:nmap <C-t> :tabnew<cr>
:imap <C-t> <ESC>:tabnew<cr>
:map <C-h> gT
:map <C-j> gt

"let / search ignore the case when everything is in lower case ...
nice
set ignorecase
set smartcase


On Mar 3, 2:17 am, snfctech <tschm...@sacfoodcoop.com> wrote:
> I saw a few folks got Wingware and some other IDE's working with code-
> completion - but has anybody got it working for VIM, such as with
> omnicomplete?  If so, please let me know how you did it.  Probably
> should go on the wiki.

-- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To post to this group, send email to web...@googlegroups.com.
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en.

Reply via email to