aboutsummaryrefslogtreecommitdiff
path: root/src/console/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/console/components')
-rw-r--r--src/console/components/Console.tsx8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/console/components/Console.tsx b/src/console/components/Console.tsx
index 77f1b09..3fe5cee 100644
--- a/src/console/components/Console.tsx
+++ b/src/console/components/Console.tsx
@@ -175,22 +175,16 @@ class Console extends React.Component<Props> {
this.props.dispatch(consoleActions.getTabCompletions(text, cmd.command, cmd.args, false));
break;
case Command.BufferDelete:
- this.props.dispatch(consoleActions.getTabCompletions(text, cmd.command, cmd.args, true));
- break;
- case Command.BufferDeleteForce:
- this.props.dispatch(consoleActions.getTabCompletions(text, cmd.command, cmd.args, false));
- break;
case Command.BuffersDelete:
this.props.dispatch(consoleActions.getTabCompletions(text, cmd.command, cmd.args, true));
break;
+ case Command.BufferDeleteForce:
case Command.BuffersDeleteForce:
this.props.dispatch(consoleActions.getTabCompletions(text, cmd.command, cmd.args, false));
break;
case Command.Set:
this.props.dispatch(consoleActions.getPropertyCompletions(text, cmd.command, cmd.args));
break;
- default:
- this.props.dispatch(consoleActions.getCompletions(text));
}
}
}