22
33Author: Alexander Skachko <alexander.skachko@gmail.com>
44Homepage: https://github.com/lucerion/vim-extract
5- Version: 0.2
6- Licence: MIT
5+ Version: 0.3
6+ Licence: MIT (see LICENSE)
77
88===============================================================================
99CONTENTS *vim-extract*
@@ -17,25 +17,26 @@ License |vim-extract-license|
1717===============================================================================
1818INSTALL *vim-extract-install*
1919
20- vim-extract dependending on vim-buffr plugin
20+ This plugin depends on vim-buffr (https://github.com/lucerion/vim-buffr )
21+ plugin
2122
22- Vundle https://github.com/VundleVim/Vundle.vim
23+ Vundle https://github.com/VundleVim/Vundle.vim
2324>
2425 Plugin 'lucerion/vim-extract'
2526 Plugin 'lucerion/vim-buffr'
2627<
27- Pathogen https://github.com/tpope/vim-pathogen
28+ Pathogen https://github.com/tpope/vim-pathogen
2829>
2930 cd ~/.vim/bundle
3031 git clone https://github.com/lucerion/vim-extract
3132 git clone https://github.com/lucerion/vim-buffr
3233<
33- NeoBundle https://github.com/Shougo/neobundle.vim
34+ NeoBundle https://github.com/Shougo/neobundle.vim
3435>
3536 NeoBundle 'lucerion/vim-extract'
3637 NeoBundle 'lucerion/vim-buffr'
3738<
38- vim-plug https://github.com/junegunn/vim-plug
39+ vim-plug https://github.com/junegunn/vim-plug
3940>
4041 Plug 'lucerion/vim-extract'
4142 Plug 'lucerion/vim-buffr'
@@ -50,41 +51,53 @@ Manual
5051===============================================================================
5152COMMANDS *vim-extract-commands*
5253
53- *:VExtract*
54- :VExtract In Visual mode - extract selection to a buffer,
55- in Normal mode - open the extract buffer.
54+ *:Extr*
55+ :[range] Extr {name} {position} or :[range] Extr {position} {name}
56+
57+ In Visual mode - extract selection to a buffer, in Normal mode - open
58+ the extract buffer. Buffer will be opened with {name} at {position}
59+ 'name' and 'position' arguments are optional
60+ Without 'position' argument buffer will open with last opened position or
61+ will be opened with default position
62+ Possible {position} values: -top, -bottom, -left, -right, -tab
63+ Default {position} value: -top
5664
5765===============================================================================
5866OPTIONS *vim-extract-options*
5967
6068 *g:extract_name*
6169
62- The name of the extract buffer. {filename} pattern will be replaced with
63- the current file name.
70+ Pattern of the extract buffer name . {filename} will be replaced with current
71+ file name. Will be used if :Extr command was called without 'name' argument
6472
6573Default: '_{filename} '
6674
67- *g:extract_position*
68-
69- The extract buffer position.
70-
71- Possible values: 'top' , 'bottom' , 'left' , 'right' , 'tab'
72- Default: 'top'
73-
7475 *g:extract_append*
7576
76- Append selected text to the end of the extract buffer or clear the extract
77- buffer before insert.
77+ Append selected text to the end of the extract buffer (1) or clear the extract
78+ buffer and insert selection (0)
7879
7980Default: 1
8081
8182===============================================================================
8283CHANGELOG *vim-extract-changelog*
8384
85+ 0.3.0 (2016-03-27)~
86+ vim-buffr plugin version 0.3 required
87+
88+ Features
89+ * position and buffer name arguments were added to command
90+ * allow range
91+ Fixes
92+ * buffr#open_or_create arguments were changed to dictionary
93+ * command VExtract was renamed to Extr
94+ * g:extract_position option was removed
95+
84960.2.0 (2016-02-05)~
8597 Fixes
86- Change buffr#open to buffr#open_or_create
87- Rename Extract to VExtract command (vim-rails plugin conflict)
98+ * buffr#open to buffr#open_or_create was changed
99+ * command Extract was renamed to VExtract (vim-rails plugin conflict)
100+
881010.1.0 (2015-12-06)~
89102 First release
90103
0 commit comments