windows下gvim的ctags不好使, 只能提示已经打开的文件的内容,不能提示我设置的tags的内容

我在F:\MinGW\include下生成了tags(命令:ctags -R)文件, 并在.vimrc里set tags中添加了他(F:\MinGW\include\tags),但是进入vim中还是没有代码提示,只能提示本文件里的内容,我想让他提示MinGW的c++标准库.
环境变量有:F:\MinGW\bin;C:\exdev\tools\exvim\vim73
我使用的是exvim,;配置文件只改了中文帮助和utf-8设置(http://code.google.com/p/exvim/)

ctags 和vim 配合使用, 你还是要告诉它你想查什么(比如:tag my_struct_name), 要不你只能得到当前打开的文件的信息.
你可以让光标落在一个symbol名字上, 用Ctrl + ], 进行跳转,查看你定义, 用 Ctrl + o jump back.
A famous vim plugin, taglist.vim, which many help you in this case, i am not sure if your install it, you can get it from:
http://vim.sourceforge.net/scripts/script.php?script_id=273
温馨提示:答案为网友推荐,仅供参考