You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using default 'main' branch is OK, as changes there rarely accidentally break something (so far). However, if you want to be extra safe and use only stable releases of 'mini.nvim', add `MiniDeps.add({ name = 'mini.nvim', checkout = 'stable' })` call after 'mini.deps' is set up and execute `:DepsUpdateOffline mini.nvim`.
80
+
79
81
To install from standalone repository, replace any occurrence of 'mini.nvim' in the code snippet to 'mini.deps'.
80
82
81
83
**NOTE**: 'mini.nvim' is installed in 'pack/deps/start' and not 'pack/deps/opt' to always be included in 'mini.deps' session. If you want to make it "opt" plugin (as any other installed plugin), use 'pack/deps/opt' but add `MiniDeps.add('mini.nvim')` call after 'mini.deps' is set up.
This plugin can be installed as part of 'mini.nvim' library (**recommended**) or as a standalone Git repository.
42
42
43
-
<!-- TODO: Uncomment use of `stable` branch before 0.12.0 release -->
44
-
45
-
<!-- There are two branches to install from: -->
46
-
47
-
During beta-testing phase there is only one branch to install from:
43
+
There are two branches to install from:
48
44
49
45
-`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).
50
-
<!-- - `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch.-->
46
+
-`stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch.
51
47
52
48
Here are code snippets for some common installation methods (use only one):
53
49
@@ -56,26 +52,22 @@ Here are code snippets for some common installation methods (use only one):
Copy file name to clipboardExpand all lines: readmes/mini-visits.md
+30-47Lines changed: 30 additions & 47 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,7 +82,7 @@ Notes:
82
82
83
83
- Tracking can be disabled by supplying empty string as `track.event`. Then it is up to the user to properly call `MiniVisits.register_visit()`.
84
84
85
-
### Reusing visits ~
85
+
### Reusing visits
86
86
87
87
Visit data can be reused in at least these ways:
88
88
@@ -107,14 +107,10 @@ See `*MiniVisits-examples*` help tag for some actual configuration and workflow
107
107
108
108
This plugin can be installed as part of 'mini.nvim' library (**recommended**) or as a standalone Git repository.
109
109
110
-
<!-- TODO: Uncomment use of `stable` branch before 0.12.0 release -->
111
-
112
-
<!-- There are two branches to install from: -->
113
-
114
-
During beta-testing phase there is only one branch to install from:
110
+
There are two branches to install from:
115
111
116
112
-`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).
117
-
<!-- - `stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch.-->
113
+
-`stable` will be updated only upon releases with code tested during public beta-testing phase in `main` branch.
118
114
119
115
Here are code snippets for some common installation methods (use only one):
120
116
@@ -123,26 +119,22 @@ Here are code snippets for some common installation methods (use only one):
0 commit comments