Skip to content

Commit bd5686d

Browse files
committed
feat(minimax): sync to a9f0ae1
1 parent 6c7e958 commit bd5686d

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

MiniMax/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
_Generated from the `main` branch of 'MiniMax'_
22

3+
## 2025-12-20 {#2025-12-20}
4+
5+
- Start using 'mini.cmdline'.
6+
37
## 2025-12-16 {#2025-12-16}
48

59
- Update 'nvim-treesitter/nvim-treesitter' plugin to not explicitly use `main` branch as it is now the default.

MiniMax/configs/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ Available:
1010

1111
- [`nvim-0.11`](nvim-0.11) - for Neovim>=0.11
1212

13-
Planned (after small time of 'nvim-0.11' public testing):
13+
Planned (after some time of 'nvim-0.11' public testing):
1414

15-
- [`nvim-0.9`](nvim-0.9) - for Neovim>=0.9
16-
- [`nvim-0.10`](nvim-0.10) - for Neovim>=0.10
17-
- [`nvim-0.12`](nvim-0.12) - for Neovim>=0.12
15+
- `nvim-0.9` - for Neovim>=0.9
16+
- `nvim-0.10` - for Neovim>=0.10
17+
- `nvim-0.12` - for Neovim>=0.12
1818

1919
### Structure
2020

MiniMax/configs/nvim-0.11/index.qmd

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -810,6 +810,12 @@ later(function()
810810
})
811811
end)
812812

813+
-- Command line tweaks. Improves command line editing with:
814+
-- - Autocompletion. Basically an automated `:h cmdline-completion`.
815+
-- - Autocorrection of words as-you-type. Like `:W`->`:w`, `:lau`->`:lua`, etc.
816+
-- - Autopeek command range (like line number at the start) as-you-type.
817+
later(function() require('mini.cmdline').setup() end)
818+
813819
-- Tweak and save any color scheme. Contains utility functions to work with
814820
-- color spaces and color schemes. Example usage:
815821
-- - `:Colorscheme default` - switch with animation to the default color scheme

0 commit comments

Comments
 (0)