@@ -3,6 +3,7 @@ import { commands as barrel_roll_commands, description as barrel_roll_descriptio
33import { commands as pesticide_commands , description as pesticide_description , default as PesticidePlugin } from './pesticide'
44import { commands as construct_commands , description as construct_description , default as ConstructPlugin } from './construct'
55import { commands as construct_debug_commands , description as construct_debug_description , default as ConstructDebugPlugin } from './construct.debug'
6+ import { commands as ct_head_scan_commands , description as ct_head_scan_description , default as CtHeadScanPlugin } from './ct-head-scan'
67import { commands as wireframe_commands , description as wireframe_description , default as WireframePlugin } from './wireframe'
78import { commands as skeleton_commands , description as skeleton_description , default as SkeletonPlugin } from './skeleton'
89import { commands as tag_debugger_commands , description as tag_debugger_description , default as TagDebuggerPlugin } from './tag-debugger'
@@ -27,6 +28,7 @@ export const PluginRegistry = new Map(Object.entries({
2728 ...commandsToHash ( pesticide_commands , PesticidePlugin ) ,
2829 ...commandsToHash ( construct_commands , ConstructPlugin ) ,
2930 ...commandsToHash ( construct_debug_commands , ConstructDebugPlugin ) ,
31+ ...commandsToHash ( ct_head_scan_commands , CtHeadScanPlugin ) ,
3032 ...commandsToHash ( wireframe_commands , WireframePlugin ) ,
3133 ...commandsToHash ( skeleton_commands , SkeletonPlugin ) ,
3234 ...commandsToHash ( tag_debugger_commands , TagDebuggerPlugin ) ,
@@ -47,6 +49,7 @@ export const PluginHints = [
4749 { command : pesticide_commands [ 0 ] , description : pesticide_description } ,
4850 { command : construct_commands [ 0 ] , description : construct_description } ,
4951 { command : construct_debug_commands [ 0 ] , description : construct_debug_description } ,
52+ { command : ct_head_scan_commands [ 0 ] , description : ct_head_scan_description } ,
5053 { command : wireframe_commands [ 0 ] , description : wireframe_description } ,
5154 { command : skeleton_commands [ 0 ] , description : skeleton_description } ,
5255 { command : tag_debugger_commands [ 0 ] , description : tag_debugger_description } ,
0 commit comments