Clean up help file

This commit is contained in:
Junegunn Choi
2015-08-22 23:24:19 +09:00
parent 53bacac152
commit 9a90963791

View File

@@ -1,18 +1,17 @@
fzf-vim.txt fzf-vim Last change: August 22 2015 fzf-vim.txt fzf-vim Last change: August 22 2015
FZF-VIM - TABLE OF CONTENTS *fzfvim* *fzf-vim* *fzf-vim-toc* FZF-VIM - TABLE OF CONTENTS *fzf-vim* *fzf-vim-toc*
============================================================================== ==============================================================================
fzf :heart: vim fzf :heart: vim
Rationale |fzf-vim-1| Rationale
Installation |fzf-vim-2| Installation
Commands |fzf-vim-3| Commands
Customization |fzf-vim-3-1| Customization
Mappings |fzf-vim-4| Mappings
Usage |fzf-vim-4-1| Usage
Completion helper |fzf-vim-4-2| Completion helper
Reducer example |fzf-vim-4-2-1| Reducer example
License |fzf-vim-5| License
FZF :HEART: VIM *fzf-vim-fzf-heart-vim* FZF :HEART: VIM *fzf-vim-fzf-heart-vim*
============================================================================== ==============================================================================
@@ -22,7 +21,6 @@ A set of {fzf}{1}-based Vim commands and mappings.
{1} https://github.com/junegunn/fzf {1} https://github.com/junegunn/fzf
*fzf-vim-1*
RATIONALE *fzf-vim-rationale* RATIONALE *fzf-vim-rationale*
============================================================================== ==============================================================================
@@ -42,7 +40,6 @@ so you might want to treat this repository as a reference.
{3} https://github.com/junegunn/dotfiles/blob/master/vimrc {3} https://github.com/junegunn/dotfiles/blob/master/vimrc
*fzf-vim-2*
INSTALLATION *fzf-vim-installation* INSTALLATION *fzf-vim-installation*
============================================================================== ==============================================================================
@@ -54,12 +51,9 @@ Using {vim-plug}{4}:
{4} https://github.com/junegunn/vim-plug {4} https://github.com/junegunn/vim-plug
*fzf-vim-3*
COMMANDS *fzf-vim-commands* COMMANDS *fzf-vim-commands*
============================================================================== ==============================================================================
*:FZF*
-----------------+--------------------------------------------------------------------- -----------------+---------------------------------------------------------------------
Command | List ~ Command | List ~
-----------------+--------------------------------------------------------------------- -----------------+---------------------------------------------------------------------
@@ -87,7 +81,6 @@ COMMANDS *fzf-vim-commands*
< Customization >_____________________________________________________________~ < Customization >_____________________________________________________________~
*fzf-vim-customization* *fzf-vim-customization*
*fzf-vim-3-1*
*g:fzf_action* *g:fzf_layout* *g:fzf_action* *g:fzf_layout*
> >
@@ -101,7 +94,6 @@ COMMANDS *fzf-vim-commands*
let g:fzf_layout = { 'down': '40%' } let g:fzf_layout = { 'down': '40%' }
< <
*fzf-vim-4*
MAPPINGS *fzf-vim-mappings* MAPPINGS *fzf-vim-mappings*
============================================================================== ==============================================================================
@@ -117,7 +109,6 @@ MAPPINGS *fzf-vim-mappings*
< Usage >_____________________________________________________________________~ < Usage >_____________________________________________________________________~
*fzf-vim-usage* *fzf-vim-usage*
*fzf-vim-4-1*
> >
imap <c-x><c-k> <plug>(fzf-complete-word) imap <c-x><c-k> <plug>(fzf-complete-word)
imap <c-x><c-f> <plug>(fzf-complete-path) imap <c-x><c-f> <plug>(fzf-complete-path)
@@ -126,7 +117,6 @@ MAPPINGS *fzf-vim-mappings*
< Completion helper >_________________________________________________________~ < Completion helper >_________________________________________________________~
*fzf-vim-completion-helper* *fzf-vim-completion-helper*
*fzf-vim-4-2*
`fzf#complete` is a helper function for creating custom fuzzy completion using `fzf#complete` is a helper function for creating custom fuzzy completion using
fzf. If the first parameter is a command string or a Vim list, it will be used fzf. If the first parameter is a command string or a Vim list, it will be used
@@ -150,7 +140,6 @@ following exceptions:
Reducer example~ Reducer example~
*fzf-vim-reducer-example* *fzf-vim-reducer-example*
*fzf-vim-4-2-1*
> >
function! s:make_sentence(lines) function! s:make_sentence(lines)
return substitute(join(a:lines), '^.', '\=toupper(submatch(0))', '').'.' return substitute(join(a:lines), '^.', '\=toupper(submatch(0))', '').'.'
@@ -163,7 +152,6 @@ Reducer example~
\ 'left': 20}) \ 'left': 20})
< <
*fzf-vim-5*
LICENSE *fzf-vim-license* LICENSE *fzf-vim-license*
============================================================================== ==============================================================================