*info.txt*	For Vim version 7.3	Last change: 2013-11-15


			VIM REFERENCE MANUAL	by ccx


Help on using info                                                    *info*

1. Introduction				|info-intro|
2. Usage				|info-usage|
2. Configuration			|info-configuration|

==============================================================================
 1. INTRODUCTION                                                  *info-intro*

Syntax file and helper functions for browsing GNU info documentation. 
Associated filetype is "info", you can use |:Info| command to load page
or do it manually: >

	info --subnodes <topic> | vim +set\ ft=info\ nomodified -

==============================================================================
 2. USAGE                                                         *info-usage*

:Info {name}  Display the desired info page.                           *:Info*

==============================================================================
 3. CONFIGURATION                                         *info-configuration*

|g:no_info_maps|		If set, no keybindings are overriden.
|info-mappings|			Default mappings and how to change them.

------------------------------------------------------------------------------
                                                              *g:no_info_maps*
Values: any                                                                  ~
Default: undefined                                                           ~

Disables overriding mappings for the buffer. <Plug> mappings are always defined
for the buffer.
You can also redefine single
mappings by defining maps to <Plug> mapping before the info file is loaded,
eg: >

	nmap <Esc>n <Plug>InfoNext

You can set your |<LocalLeader>| by assigning a string to a maplocalleader
variable: >

	let maplocalleader = '-'

  default map     user mapping name      action ~
  ---------------------------------------------------------------------
  ]]              <Plug>InfoHeadingNext  Jump to next heading.
  [[              <Plug>InfoHeadingPrev  Jump to previous heading.
  <Tab>           <Plug>InfoLinkNext     Jump to next reference.
  <S-Tab>         <Plug>InfoLinkPrev     Jump to previous reference.
  <C-]>           <Plug>InfoFollow       Follow reference
  <LocalLeader>n  <Plug>InfoNext         Jump to next node in hierarchy
  <LocalLeader>p  <Plug>InfoPrev         Jump to previous node
  <LocalLeader>u  <Plug>InfoUp           Jump to parent node

 vim:tw=78:ts=8:ft=help:norl: