diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-03-29 21:59:25 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-03-29 21:59:25 +0900 |
commit | 5176643e64d8f4a6be5fc73f0eb48dc65322e496 (patch) | |
tree | 2452435a46de12991b41dffd9c173596dc4fc9a8 /src/console/components | |
parent | ac18ad17e62834131399074b09f742266761ac2d (diff) |
Clean unused code
Diffstat (limited to 'src/console/components')
-rw-r--r-- | src/console/components/Console.tsx | 8 |
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)); } } } |