Hossam
Hossam

Reputation: 23

Vim Plugin to integrate programming language documentation

I know there is a plugin named pydoc that integrates python documentation with vim. But is there a general plugin that integrates a chosen documentation with a chosen file extension.

Thanks

Upvotes: 1

Views: 269

Answers (2)

byaruhaf
byaruhaf

Reputation: 4743

Vinfo is a Vim plugin that allows you to read Info documentation files right inside a Vim session in a Vim-help fashioned way or from a shell just the way you normally use Info

Upvotes: 0

lcd047
lcd047

Reputation: 5861

There is no such plugin for arbitrary documentation (at least as far as I know), but there are many plugins for particular documentation sources. Personally I'm using vim-ref (which supports Clojure, Erlang, UNIX man, perldoc, PHP manual, pydoc, and Ruby's ReFe), and info (for GNU Info; this one is quite old but still better than many alternatives).

Upvotes: 2

Related Questions