53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
|
*vim-java-hierarchy*
|
||
|
|
||
|
|
||
|
Class / Interface Hierarchy
|
||
|
***************************
|
||
|
|
||
|
*:JavaHierarchy*
|
||
|
|
||
|
When viewing a java class or interface you can view the type hierarchy
|
||
|
by issuing the command :JavaHierarchy. This will open a temporary
|
||
|
buffer with an inversed tree view of the type hierarchy with the
|
||
|
current class / interface at the root.
|
||
|
|
||
|
>
|
||
|
|
||
|
public class XmlCodeCompleteCommand
|
||
|
public class WstCodeCompleteCommand
|
||
|
public class AbstractCodeCompleteCommand
|
||
|
public class AbstractCommand
|
||
|
public interface Command
|
||
|
|
||
|
<
|
||
|
|
||
|
|
||
|
Inner classes / interfaces are also supported. Just place the cursor
|
||
|
on the inner class / interface before calling :JavaHierarchy.
|
||
|
|
||
|
While you are in the hierarchy tree buffer, you can jump to the type
|
||
|
under the cursor using one of the following key bindings:
|
||
|
|
||
|
- <cr> - open the type using the (default action).
|
||
|
|
||
|
- E - open the type via :edit
|
||
|
|
||
|
- S - open the type via :split
|
||
|
|
||
|
- T - open the type via :tabnew
|
||
|
|
||
|
- ? - view help buffer
|
||
|
|
||
|
|
||
|
Configuration
|
||
|
=============
|
||
|
|
||
|
Vim Variables
|
||
|
|
||
|
*g:EclimJavaHierarchyDefaultAction*
|
||
|
|
||
|
- g:EclimJavaHierarchyDefaultAction (defaults to 'split') - Determines
|
||
|
the command used to open the type when hitting <enter> on the type
|
||
|
entry in the hierarchy buffer.
|
||
|
|
||
|
vim:ft=eclimhelp
|