Last edit
Summary: qtdoc link fix
Changed:
< Use <tt>[http://furius.ca/pubcode/pub/conf/common/elisp/blais/qtdoc.el qtdoc.el]</tt> to look up in Qt documentation.
to
> Use <tt>[http://furius.ca/pubcode/pub/conf/lib/elisp/blais/qtdoc.el qtdoc.el]</tt> to look up in Qt documentation.
Look up HTML documentation for the symbol under the cursor.
To look up in the Common Lisp Hyperspec, there’s hyperspec.el.
To look up the documentation strings of Emacs Lisp functions and variables, see SelfDocumentation.
Pylookup is a mode to search the Python documentations from Emacs.
http://taesoo.org/Opensource/Pylookup
From PhpMode:
I didn’t see such a feature in the php-mode I use so I whipped up a quick solution. If you press F1 when standing on a symbol you can quickly look up its online documentation. Here it is:
(add-hook 'php-mode-hook 'my-php-mode-stuff)
(defun my-php-mode-stuff ()
(local-set-key (kbd "<f1>") 'my-php-symbol-lookup))
(defun my-php-symbol-lookup ()
(interactive)
(let ((symbol (symbol-at-point)))
(if (not symbol)
(message "No symbol at point.")
(browse-url (concat "http://php.net/manual-lookup.php?pattern="
(symbol-name symbol))))))
Use qtdoc.el to look up in Qt documentation.
CCLookup (Searching cppreference): http://taesoo.org/Opensource/CClookup
GTKLookup (using anything)
Web: http://taesoo.org/Opensource/Gtklookup
Git: http://github.com/tsgates/gtklookup
See nXhtml.