-
Notifications
You must be signed in to change notification settings - Fork 0
/
javadoc.txt
40 lines (31 loc) · 1.45 KB
/
javadoc.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
*javadoc.txt* Plugin for opening a browser to the javadoc
This plugin enables the user to open a browser to the javadoc for the word under
the cursor.
==============================================================================
MAPPINGS *javadoc-mappings*
`<Leader>j` or `<Plug>JavadocOpen`
Open the javadoc for the word under the cursor:
>vim
map <leader>j <Plug>JavadocOpen
<
==============================================================================
COMMANDS *javadoc-commands*
`:Javadoc {word}`
Open the javadoc for the specified word.
==============================================================================
SETTINGS *javadoc-settings*
*g:javadoc_browser*
This sets which browser opens when the plug in activated.
>vim
let g:javadoc_browser = "/usr/bin/firefox"
<
*g:javadoc_path*
This sets the list of directories when searching for a matched word.
Entries must be saparated by a ':'
>vim
let g:javadoc_path = "/usr/share/javadoc:/home/user/javadoc"
<
Javadoc was developed by Chad Skeeters <https://github.com/cskeeters>.
Distributed under Vim's |license|.
==============================================================================
vim:tw=78:ft=help:norl:et:ts=2:sw=2: