After installing omnicppcomplete plugin, I can get the member list of
vector
only if I declare like this:
std::vector<int> vi_with_std;
vi_with_std.s
                  size(  f + std::vector
                  swap( f + std::vector

if I declare like this:
    using namespace std;
    vector<int> vi_without_std;
    vi_without_std.
                          there is no member list
then there is no any member list, and with 'pattern not found' error.

my configuration for omnicppcomplete is:
" OmniCpp_Complete configuration
set tags+=~/.vim/tags/stl_tags
let OmniCpp_SelectFirstItem=2
" auto close options when exiting insert mode
autocmd InsertLeave * if pumvisible() == 0|pclose|endif

Is anyone hit the same problem? Or is this the right behaviour?
I will appreciate any advice.

--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---

Reply via email to