Skip to content

Commit

Permalink
bugfix in shown_times field
Browse files Browse the repository at this point in the history
  • Loading branch information
Ar4l committed Mar 20, 2024
1 parent dfc6065 commit 59c890b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code4me-vsc-plugin/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -362,12 +362,12 @@ class CompletionItemProvider implements vscode.CompletionItemProvider {
item.detail = '\u276E\uff0f\u276f' // Added the Logo here instead
item.documentation = 'Completion from ' + model

item.shownTimes = [new Date().toISOString()];
item.command = {
command: 'verifyInsertion',
title: 'Verify Insertion',
arguments: [prediction, position, document, verifyToken, this.uuid, item.shownTimes, () => {this.setIdleTrigger()}]
};
item.shownTimes = [new Date().toISOString()];

// This is useful if you want to see what's exactly going on with the range and prefix modifications
// I use • to denote the cursor position
Expand Down

0 comments on commit 59c890b

Please sign in to comment.