I have recently converted to using vim and am completely sold on it.
I haven’t found a nice way to use jsdoc comments with ctags to get intellisense or the ability to jump to a function.
How do you do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
“Intellisense-like” auto-completion is obtained through a plugin like autocomplpop or neocomplcache. Without these plugins or a tags file, and assuming you are writing JavaScript, typing
<C-x><C-o>after the point inmyObj.will give you a list of native AND custom properties/methods.I don’t know of any omni-completion script that makes use of JSDoc.