Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a document discussing the structure of the vim sourcecode?

Tags:

vim

vi

I'm interesting in working on the Vim codebase but it I can't find any overall structural documentation. Does anything like this exist?

like image 520
fairfieldt Avatar asked Aug 01 '12 04:08

fairfieldt


1 Answers

In terms of documentation, there is very little; :help development gives some general introduction, but you mostly just have to dive into the source code, jump around (easy with ctags support).

The todo list (:help todo; updated version in the Mercurial repository) contains (way too) many items, both small and large. Pick some little thing and try to solve it. Any help and contribution is most welcome! I recommend to join the vim_dev mailing list, as you send your patches there and can ask questions about the source code.

like image 164
Ingo Karkat Avatar answered Oct 19 '22 01:10

Ingo Karkat