(
plugin: Plugin,
windowManager: WindowManager,
ensureInitialized: () => Promise<void>
)
| 6 | * 在右侧边栏打开评论面板命令 |
| 7 | */ |
| 8 | export async function openCommentPanel( |
| 9 | plugin: Plugin, |
| 10 | windowManager: WindowManager, |
| 11 | ensureInitialized: () => Promise<void> |
| 12 | ): Promise<void> { |
| 13 | await ensureInitialized(); |
| 14 | await windowManager.openCommentPanelInSidebar(); |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * 注册命令 |
no test coverage detected