emacs c c++ reference document -


i using emacs c , c++ ide.

i want configure emacs can read c , c++ apis (reference library) inside emacs.

please let em know how it.

bt

i use following line in .emacs file automatically show man page c function under cursor when push f1 (of course assumes have development man pages installed):

(global-set-key  [f1] (lambda () (interactive) (manual-entry (current-word)))) 

for example on ubuntu linux system, manpages-dev , libstdc++6-4.4-doc packages contain manpages c , c++ standard libraries, respectively. similar packages exist other systems, including macosx


Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -