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
Copy file name to clipboardExpand all lines: mini.nvim/CHANGELOG.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,11 +107,17 @@ There are following change types:
107
107
108
108
- Ensure preview window is never hidden, even if cursor is on the line for a not (yet) existing file system entry. This reduces flickering of preview window when creating new files in Insert mode.
109
109
110
+
### Expand {#v0.17.0-mini.files-expand}
111
+
112
+
- Add `config.content.highlight` to customize how file system entry is highlighted. Defaults to a new `default_highlight()` function.
113
+
110
114
## mini.hues {#v0.17.0-mini.hues}
111
115
112
116
### Evolve {#v0.17.0-mini.hues-evolve}
113
117
114
-
- Add auto adjusting of highlight groups based on certain events (like `MsgSeparator` group based on changing of `msgsep` flag of 'fillchars' option). It can be disabled via new `autoadjust` config setting or `opts.autoadjust` in `apply_palette()`.
118
+
- Add auto adjusting of highlight groups based on certain events. It can be disabled via new `autoadjust` config setting or `opts.autoadjust` in `apply_palette()`. Affected groups:
119
+
-`MsgSeparator` depends on `msgsep` flag of 'fillchars' option.
120
+
-`Pmenu` depends on 'pumborder' option value (on Neovim>=0.12).
Copy file name to clipboardExpand all lines: mini.nvim/doc/mini-hues.qmd
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -301,6 +301,12 @@ events relevant to them. Currently adjusted groups:
301
301
-[hl-MsgSeparator](https://neovim.io/doc/user/helptag.html?tag=hl-MsgSeparator) is adjusted based on `msgsep` flag in ['fillchars'](https://neovim.io/doc/user/helptag.html?tag='fillchars').
302
302
If it is whitespace - highlight background, otherwise - foreground.
303
303
304
+
305
+
-[hl-Pmenu](https://neovim.io/doc/user/helptag.html?tag=hl-Pmenu) is adjusted based on ['pumborder'](https://neovim.io/doc/user/helptag.html?tag='pumborder') value (on Neovim>=0.12).
306
+
If it results in a border - same as floating window (but with no accent
307
+
foreground in border), otherwise - same as [hl-CursorLine](https://neovim.io/doc/user/helptag.html?tag=hl-CursorLine). This design
308
+
makes [ins-completion-menu](https://neovim.io/doc/user/helptag.html?tag=ins-completion-menu) stand out from regular floating windows.
0 commit comments