Skip to content

Commit 3cc047b

Browse files
committed
docs: prepare for 0.15.0 release
1 parent 3e3f82c commit 3cc047b

File tree

1 file changed

+26
-32
lines changed

1 file changed

+26
-32
lines changed

readmes/mini-snippets.md

Lines changed: 26 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,10 @@ For supported snippet syntax see `:h MiniSnippets-syntax-specification` or [Synt
230230

231231
This plugin can be installed as part of 'mini.nvim' library (**recommended**) or as a standalone Git repository.
232232

233-
During beta-testing phase there is only one branch to install from:
234-
<!-- There are two branches to install from: -->
233+
There are two branches to install from:
235234

236235
- `main` (default, **recommended**) will have latest development version of plugin. All changes since last stable release should be perceived as being in beta testing phase (meaning they already passed alpha-testing and are moderately settled).
237-
<!-- - `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch. -->
236+
- `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch.
238237

239238
Here are code snippets for some common installation methods (use only one):
240239

@@ -248,18 +247,17 @@ Here are code snippets for some common installation methods (use only one):
248247
</thead>
249248
<tbody>
250249
<tr>
251-
<!-- <td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td rowspan=2><i>Follow recommended 'mini.deps' installation</i></td> -->
252-
<td rowspan=1>'mini.nvim' library</td> <td>Main</td> <td rowspan=1><i>Follow recommended 'mini.deps' installation</i></td>
250+
<td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td rowspan=2><i>Follow recommended 'mini.deps' installation</i></td>
253251
</tr>
254-
<!-- <tr> -->
255-
<!-- <td>Stable</td> -->
256-
<!-- </tr> -->
257252
<tr>
258-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>add('echasnovski/mini.snippets')</code></td>
253+
<td>Stable</td>
254+
</tr>
255+
<tr>
256+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>add('echasnovski/mini.snippets')</code></td>
257+
</tr>
258+
<tr>
259+
<td>Stable</td> <td><code>add({ source = 'echasnovski/mini.snippets', checkout = 'stable' })</code></td>
259260
</tr>
260-
<!-- <tr> -->
261-
<!-- <td>Stable</td> <td><code>add({ source = 'echasnovski/mini.snippets', checkout = 'stable' })</code></td> -->
262-
<!-- </tr> -->
263261
</tbody>
264262
</table>
265263
</details>
@@ -274,19 +272,17 @@ Here are code snippets for some common installation methods (use only one):
274272
</thead>
275273
<tbody>
276274
<tr>
277-
<!-- <td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td> -->
278-
<td rowspan=1>'mini.nvim' library</td> <td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
275+
<td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td><code>{ 'echasnovski/mini.nvim', version = false },</code></td>
276+
</tr>
277+
<tr>
278+
<td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td>
279279
</tr>
280-
<!-- <tr> -->
281-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.nvim', version = '*' },</code></td> -->
282-
<!-- </tr> -->
283280
<tr>
284-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>{ 'echasnovski/mini.snippets', version = false, main = 'mini.git' },</code></td> -->
285-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>{ 'echasnovski/mini.snippets', version = false },</code></td>
281+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>{ 'echasnovski/mini.snippets', version = false },</code></td>
282+
</tr>
283+
<tr>
284+
<td>Stable</td> <td><code>{ 'echasnovski/mini.snippets', version = '*' },</code></td>
286285
</tr>
287-
<!-- <tr> -->
288-
<!-- <td>Stable</td> <td><code>{ 'echasnovski/mini.snippets', version = '*', main = 'mini.git' },</code></td> -->
289-
<!-- </tr> -->
290286
</tbody>
291287
</table>
292288
</details>
@@ -301,19 +297,17 @@ Here are code snippets for some common installation methods (use only one):
301297
</thead>
302298
<tbody>
303299
<tr>
304-
<!-- <td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td> -->
305-
<td rowspan=1>'mini.nvim' library</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
300+
<td rowspan=2>'mini.nvim' library</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.nvim'</code></td>
301+
</tr>
302+
<tr>
303+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td>
304+
</tr>
305+
<tr>
306+
<td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.snippets'</code></td>
306307
</tr>
307-
<!-- <tr> -->
308-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.nvim', { 'branch': 'stable' }</code></td> -->
309-
<!-- </tr> -->
310308
<tr>
311-
<!-- <td rowspan=2>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.snippets'</code></td> -->
312-
<td rowspan=1>Standalone plugin</td> <td>Main</td> <td><code>Plug 'echasnovski/mini.snippets'</code></td>
309+
<td>Stable</td> <td><code>Plug 'echasnovski/mini.snippets', { 'branch': 'stable' }</code></td>
313310
</tr>
314-
<!-- <tr> -->
315-
<!-- <td>Stable</td> <td><code>Plug 'echasnovski/mini.snippets', { 'branch': 'stable' }</code></td> -->
316-
<!-- </tr> -->
317311
</tbody>
318312
</table>
319313
</details>

0 commit comments

Comments
 (0)