转载时请标明文章原始出处和作者信息, 作者: lostsnow.
http://www.lsproc.com/blog/vim_taglist_config/
只显示当前文件 function list
"""""""""""" " taglist """""""""""" let Tlist_Auto_Open = 0 let Tlist_Auto_Update = 1 let Tlist_Hightlight_Tag_On_BufEnter = 1 let Tlist_Show_One_File = 1 " 只显示当前文件 let Tlist_Enable_Fold_Column = 0 let Tlist_File_Fold_Auto_Close = 0 let Tlist_Process_File_Always = 1 let Tlist_Display_Prototype = 0 let Tlist_Compact_Format = 1 let Tlist_Use_Right_Window = 1 let tlist_php_settings = 'php;c:classes;i:interfaces;d:const;f:func'
-- EOF --