=== removed directory 'doc' === removed file 'doc/info.txt' --- doc/info.txt 2013-11-15 10:11:00 +0000 +++ doc/info.txt 1970-01-01 00:00:00 +0000 @@ -1,43 +0,0 @@ -*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. Configuration |info-configuration| - -============================================================================== - 1. INTRODUCTION *info-intro* - -Syntax file and helper functions for browsing GNU info documentation. -Associated filetype is "info", you'll have to set that yourself for now. -You can use: > - - info --subnodes | vim +set\ ft=info\ nomodified - - -To get your desired infopage in vim. Parsing .info files and better navigation -is TBD. - -============================================================================== - 2. CONFIGURATION *info-configuration* - -|'g:no_info_maps'| If set, no keybindings are defined. - ------------------------------------------------------------------------------- - *'g:no_info_maps'* -Values: any ~ -Default: undefined ~ - -Unless this variable is defined, following buffer-local normal-mode -keybindings are defined: - -- ]] Jump to next heading. -- [[ Jump to previous heading. -- Jump to next reference. -- Jump to previous reference. -- Follow reference - - vim:tw=78:ts=8:ft=help:norl: === modified file 'ftplugin/info.vim' --- ftplugin/info.vim 2013-11-15 10:11:00 +0000 +++ ftplugin/info.vim 2013-11-14 20:24:54 +0000 @@ -1,5 +1,5 @@ if &filetype == 'info' - if !exists("g:no_plugin_maps") && !exists("g:no_info_maps") + if !exists("no_plugin_maps") && !exists("no_info_maps") nnoremap ]] :call info#HeadingNext() nnoremap [[ :call info#HeadingPrev() nnoremap :call info#FollowRef()