K is used to open manuals. I am interested how you use it. Can you use it to all kind of manuals, such as C, java and other things?
|
|
|
||
|
|
|
|
Yes. You need to update the keywordprg variable to point to a program that can lookup a keyword in the language of your choice. In general you can google for particular languages and solutions. Here are a couple of them |
||
|
|
|
|
Simply put, K runs the command specified by the 'keywordprg' option on the "word" under the cursor (where a "word" is a contiguous block of letters, numbers, and any other characters specified by the 'iskeyword' option). On Unix-based systems, 'keywordprg' defaults to 'man', so anything for which the 'man' command returns a useful manual can be looked up using K in this default setup. Most Unix systems have man pages for C libraries, so you can look up C library functions pretty easily. Most systems do not have man pages for Java, however, so to look up Java documentation you'd need to either install man pages for Java or change the 'keywordprg' setting to invoke a program (other than "man") that will display Java documentation. Here's a Python script you could use:
Save this as
Then pressing K will invoke javaman.py which in turn will do an "I'm feeling Lucky" search on Google for the relevant Java API docs. On non-Unix systems you may need to include python in the command:
You'll probably also need to modify the script (for example, it currently uses "&" to background firefox, which is a Unix-ism). |
||||
|
