File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 107
107
108
108
--- @param ctx copilot_suggestion_context
109
109
local function reset_ctx (ctx )
110
- logger .trace (" suggestion reset context" , ctx )
110
+ logger .trace (" suggestion reset context" )
111
111
ctx .first = nil
112
112
ctx .cycling = nil
113
113
ctx .cycling_callbacks = nil
213
213
214
214
--- @param ctx ? copilot_suggestion_context
215
215
local function cancel_inflight_requests (ctx )
216
- logger .trace (" suggestion cancel inflight requests" , ctx )
216
+ logger .trace (" suggestion cancel inflight requests" )
217
217
ctx = ctx or get_ctx ()
218
218
219
219
with_client (function (client )
238
238
--- @param ctx ? copilot_suggestion_context
239
239
--- @return copilot_get_completions_data_completion ?
240
240
local function get_current_suggestion (ctx )
241
- logger .trace (" suggestion get current suggestion" , ctx )
241
+ logger .trace (" suggestion get current suggestion" )
242
242
ctx = ctx or get_ctx ()
243
- logger .trace (" suggestion current suggestion" , ctx )
243
+ logger .trace (" suggestion current suggestion" )
244
244
245
245
local ok , choice = pcall (function ()
246
246
if
346
346
347
347
--- @param ctx ? copilot_suggestion_context
348
348
local function clear (ctx )
349
- logger .trace (" suggestion clear" , ctx )
349
+ logger .trace (" suggestion clear" )
350
350
ctx = ctx or get_ctx ()
351
351
stop_timer ()
352
352
cancel_inflight_requests (ctx )
You can’t perform that action at this time.
0 commit comments