Remove BaseAction.isOperator

This seems to be an unused relic, good riddance.
This commit is contained in:
Jason Fields 2020-08-13 16:31:13 -04:00
parent 7e88c8485b
commit c3d6e13e8c
2 changed files with 0 additions and 4 deletions

View File

@ -39,8 +39,6 @@ export class BaseAction {
public mustBeFirstKey = false;
public isOperator = false;
/**
* The keys pressed at the time that this action was triggered.
*/

View File

@ -25,7 +25,6 @@ export class BaseOperator extends BaseAction {
this.multicursorIndex = multicursorIndex;
}
canBeRepeatedWithDot = true;
isOperator = true;
/**
* If this is being run in multi cursor mode, the index of the cursor
@ -82,7 +81,6 @@ export class BaseOperator extends BaseAction {
);
const prevAction = nonCountActions[nonCountActions.length - 1];
return (
this.isOperator &&
keysPressed.length === 1 &&
prevAction &&
this.modes.includes(vimState.currentMode) &&