|
2 | 2 |
|
3 | 3 | Author: Alexander Skachko <alexander.skachko@gmail.com> |
4 | 4 | Homepage: https://github.com/lucerion/vim-extract |
5 | | -Version: 0.3 |
| 5 | +Version: 0.4 |
6 | 6 | Licence: BSD-3-Clause (see LICENSE) |
7 | 7 |
|
8 | 8 | =============================================================================== |
@@ -52,37 +52,47 @@ Manual |
52 | 52 | COMMANDS *vim-extract-commands* |
53 | 53 |
|
54 | 54 | *:Extr* |
55 | | -:[range]Extr {name} {position} or :[range]Extr {position} {name} |
| 55 | +:[range]Extr {buffer-name} {position} or :[range]Extr {position} {buffer-name} |
56 | 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 be opened with last or Default |
61 | | - position |
62 | | - Possible {position} values: -top, -bottom, -left, -right, -tab |
63 | | - Default {position} value: -top |
| 57 | + In Visual mode - extract selection to a new buffer, in Normal mode - open |
| 58 | + the extract buffer. |
| 59 | + Without 'position' argument the extract buffer will be opened with the last |
| 60 | + or default position. |
| 61 | + |
| 62 | + Positions: -top, -bottom, -left, -right, -tab |
| 63 | + Default position: -top |
64 | 64 |
|
65 | 65 | =============================================================================== |
66 | 66 | OPTIONS *vim-extract-options* |
67 | 67 |
|
68 | 68 | *g:extract_name* |
69 | 69 |
|
70 | | -Pattern for the extract buffer name. {filename} will be replaced with current |
71 | | -file name. This buffer name will be used if :Extr command was called without |
72 | | -'name' argument. |
| 70 | +Pattern for the extract buffer name. {filename} will be replaced with the |
| 71 | +current file name. This option will be used if :Extr command was called |
| 72 | +without 'name' argument. |
73 | 73 |
|
74 | 74 | Default: '_{filename}' |
75 | 75 |
|
76 | 76 | *g:extract_append* |
77 | 77 |
|
78 | | -Append selected text to the end of the extract buffer (1) or clear the extract |
79 | | -buffer and insert selection (0) |
| 78 | +Append selection to the end of the extract buffer (1) or clear the extract |
| 79 | +buffer before insertation (0). |
80 | 80 |
|
81 | 81 | Default: 1 |
82 | 82 |
|
| 83 | + *g:extract_hidden* |
| 84 | + |
| 85 | +Extract selection without opening the extract buffer. |
| 86 | + |
| 87 | +Default: 0 |
| 88 | + |
83 | 89 | =============================================================================== |
84 | 90 | CHANGELOG *vim-extract-changelog* |
85 | 91 |
|
| 92 | +0.4.0 (2016-09-19)~ |
| 93 | + Changes |
| 94 | + * extract selection without opening the extract buffer option was added |
| 95 | + |
86 | 96 | 0.3.0 (2016-03-27)~ |
87 | 97 | vim-buffr plugin version 0.3 required |
88 | 98 |
|
|
0 commit comments