(signal: AbortSignal)
| 5 | import {buildRepoUrl} from '../github-helpers/index.js'; |
| 6 | |
| 7 | function init(signal: AbortSignal): void { |
| 8 | // Reasoning for this feature: #1254 |
| 9 | registerHotkey('c', buildRepoUrl('releases/new'), {signal}); |
| 10 | } |
| 11 | |
| 12 | void features.add(import.meta.url, { |
| 13 | shortcuts: { |
nothing calls this directly
no test coverage detected