File tree 1 file changed +13
-9
lines changed
1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -64,21 +64,25 @@ Example for [`lazy.nvim`](https://github.com/folke/lazy.nvim):
64
64
``` lua
65
65
return {
66
66
" andrewferrier/debugprint.nvim" ,
67
- opts = { … },
67
+
68
+ -- opts = { … },
69
+
68
70
dependencies = {
69
71
" echasnovski/mini.nvim" -- Needed for :ToggleCommentDebugPrints (not needed for NeoVim 0.10+)
70
72
},
73
+
71
74
-- The 'keys' and 'cmds' sections of this configuration are optional and only needed if
72
75
-- you want to take advantage of `lazy.nvim` lazy-loading. If you decide to
73
76
-- customize the keys/commands (see below), you'll need to change these too.
74
- keys = {
75
- { " g?" , mode = ' n' },
76
- { " g?" , mode = ' x' },
77
- },
78
- cmd = {
79
- " ToggleCommentDebugPrints" ,
80
- " DeleteDebugPrints" ,
81
- },
77
+ --
78
+ -- keys = {
79
+ -- { "g?", mode = 'n' },
80
+ -- { "g?", mode = 'x' },
81
+ -- },
82
+ -- cmd = {
83
+ -- "ToggleCommentDebugPrints",
84
+ -- "DeleteDebugPrints",
85
+ -- },
82
86
}
83
87
```
84
88
You can’t perform that action at this time.
0 commit comments