Like the title says,I would like to develop vala with vim.My productivity is badly affected due to the lack Taglist plugin support for vala. I found a ctags implementation in valide, http://bazaar.launchpad.net/~valide/valide/trunk/files/head:/ctags-vala/
Can anyone guide me how to make this ctag implemention work with Taglist or some other vim plugin which works for vala
Found the answer, set this is .vimrc
let tlist_vala_settings='c#;d:macro;t:typedef;n:namespace;c:class;'.
\ 'E:event;g:enum;s:struct;i:interface;'.
\ 'p:properties;m:method'