fix: spring tab complate error
Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
parent
083a01f29f
commit
fe1ee3883a
@ -7,10 +7,8 @@ import { CommandMap } from './internal/command'
|
||||
|
||||
@provideSingleton(command.Command)
|
||||
export class SpringCommand extends command.Command {
|
||||
@inject(plugin.PluginInstance)
|
||||
private pluginInstance: any
|
||||
@inject(CommandMap)
|
||||
private commandMap: CommandMap = new CommandMap()
|
||||
private commandMap: CommandMap
|
||||
|
||||
protected create(plugin: any, command: string) {
|
||||
return this.commandMap.register(plugin, command)
|
||||
@ -22,6 +20,6 @@ export class SpringCommand extends command.Command {
|
||||
command.setExecutor(super.setExecutor(plugin, command, executor))
|
||||
}
|
||||
protected onTabComplete(plugin: any, command: any, tabCompleter: Function) {
|
||||
command.setTabCompleter(super.setExecutor(plugin, command, tabCompleter))
|
||||
command.setTabCompleter(super.setTabCompleter(plugin, command, tabCompleter))
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user