Make eslint happy

This commit is contained in:
Jason Fields 2024-07-01 21:40:20 -04:00
parent 79e00fea76
commit 2906a1ea42

View File

@ -640,7 +640,7 @@ export class ModeHandler implements vscode.Disposable, IModeHandler {
const recordedState = this.vimState.recordedState;
recordedState.actionKeys.push(key);
VSCodeContext.set('vim.command', recordedState.commandString);
void VSCodeContext.set('vim.command', recordedState.commandString);
const action = getRelevantAction(recordedState.actionKeys, this.vimState);
switch (action) {
@ -652,7 +652,7 @@ export class ModeHandler implements vscode.Disposable, IModeHandler {
}
// Since there is no possible action we are no longer waiting any action keys
this.vimState.recordedState.waitingForAnotherActionKey = false;
VSCodeContext.set('vim.command', '');
void VSCodeContext.set('vim.command', '');
return false;
case KeypressState.WaitingOnKeys: