File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -116,13 +116,13 @@ local module_subcommands = {
116
116
end
117
117
end ,
118
118
complete = function (subcmd_arg_lead )
119
- local reload_args = {
119
+ local at_cursor_args = {
120
120
" open-file" ,
121
121
" open-note" ,
122
122
" edit" ,
123
123
" show-popup" ,
124
124
}
125
- return vim .iter (reload_args )
125
+ return vim .iter (at_cursor_args )
126
126
:filter (function (install_arg )
127
127
return install_arg :find (subcmd_arg_lead ) ~= nil
128
128
end )
Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ local module_subcommands = {
21
21
end
22
22
end ,
23
23
complete = function (subcmd_arg_lead )
24
- local reload_args = {
24
+ local debug_args = {
25
25
" start-watchers" ,
26
26
" stop-watchers" ,
27
27
" info" ,
28
28
}
29
- return vim .iter (reload_args )
29
+ return vim .iter (debug_args )
30
30
:filter (function (install_arg )
31
31
return install_arg :find (subcmd_arg_lead ) ~= nil
32
32
end )
You can’t perform that action at this time.
0 commit comments