(signal: AbortSignal)
| 8 | import {buildRepoUrl} from '../github-helpers/index.js'; |
| 9 | |
| 10 | async function init(signal: AbortSignal): Promise<void> { |
| 11 | const ref = getCurrentGitRef() ?? await getDefaultBranch(); |
| 12 | const url = buildRepoUrl('tree', ref) + '?search=1'; |
| 13 | registerHotkey('t', url, {signal}); |
| 14 | } |
| 15 | |
| 16 | void features.add(import.meta.url, { |
| 17 | include: [ |
nothing calls this directly
no test coverage detected