File tree 3 files changed +24
-22
lines changed
3 files changed +24
-22
lines changed Original file line number Diff line number Diff line change 93
93
./languages/treesitter/hmts.nix
94
94
./languages/treesitter/rainbow-delimiters.nix
95
95
./languages/treesitter/treesitter-context.nix
96
- ./languages/treesitter/treesitter-playground.nix
97
96
./languages/treesitter/treesitter-refactor.nix
98
97
./languages/treesitter/treesitter-textobjects.nix
99
98
./languages/treesitter/treesitter.nix
248
247
./utils/yanky.nix
249
248
./utils/zellij.nix
250
249
./utils/zk.nix
250
+
251
+ ./deprecation.nix
251
252
] ;
252
253
}
Original file line number Diff line number Diff line change
1
+ { lib , ... } :
2
+ let
3
+ removed = {
4
+ # Added 2023-08-29
5
+ treesitter-playground = ''
6
+ The `treesitter-playground` plugin has been deprecated since the functionality is included in Neovim.
7
+ Use:
8
+ - `:Inspect` to show the highlight groups under the cursor
9
+ - `:InspectTree` to show the parsed syntax tree ("TSPlayground")
10
+ - `:PreviewQuery` to open the Query Editor (Nvim 0.10+)
11
+ '' ;
12
+ } ;
13
+ in
14
+ {
15
+ imports = lib . mapAttrsToList (
16
+ name :
17
+ lib . mkRemovedOptionModule [
18
+ "plugins"
19
+ name
20
+ ]
21
+ ) removed ;
22
+ }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments