File tree Expand file tree Collapse file tree 1 file changed +11
-13
lines changed Expand file tree Collapse file tree 1 file changed +11
-13
lines changed Original file line number Diff line number Diff line change 7
7
It is recommended to use `rustaceanvim` instead.
8
8
'' ;
9
9
} ;
10
- removed = {
10
+ removed . plugins = {
11
11
# Added 2023-08-29
12
12
treesitter-playground = ''
13
13
The `treesitter-playground` plugin has been deprecated since the functionality is included in Neovim.
23
23
It is recommended to use `plugins.pckr` or `plugins.lazy` instead.
24
24
'' ;
25
25
} ;
26
- renamed = {
26
+ renamed . plugins = {
27
27
# Added 2024-09-17
28
28
surround = "vim-surround" ;
29
29
} ;
46
46
{
47
47
48
48
imports =
49
- ( lib . mapAttrsToList (
50
- name :
51
- lib . mkRemovedOptionModule [
52
- "plugins"
53
- name
54
- ]
55
- ) removed )
56
- ++ ( lib . mapAttrsToList (
57
- old : new : lib . mkRenamedOptionModule [ "plugins" old ] [ "plugins" new ]
58
- ) renamed )
59
49
# TODO: introduced 2025-04-19
60
- ++ [
50
+ [
61
51
( lib . mkRenamedOptionModule
62
52
[ "plugins" "codeium-nvim" "enable" ]
63
53
[ "plugins" "windsurf-nvim" "enable" ]
67
57
[ "plugins" "windsurf-vim" "enable" ]
68
58
)
69
59
]
60
+ ++ lib . foldlAttrs (
61
+ acc : scope : removed' :
62
+ acc ++ lib . mapAttrsToList ( name : msg : lib . mkRemovedOptionModule [ scope name ] msg ) removed'
63
+ ) [ ] removed
64
+ ++ lib . foldlAttrs (
65
+ acc : scope : renamed' :
66
+ acc ++ lib . mapAttrsToList ( old : new : lib . mkRenamedOptionModule [ scope old ] [ scope new ] ) renamed'
67
+ ) [ ] renamed
70
68
++ builtins . map (
71
69
name :
72
70
lib . mkRemovedOptionModule [ "plugins" name "iconsPackage" ] ''
You can’t perform that action at this time.
0 commit comments