()
| 21 | } |
| 22 | |
| 23 | export function hasStarShortcut(): boolean { |
| 24 | const shortcuts: string[] = getWorkspaceConfiguration().get<string[]>("editor.shortcuts", ["submit", "test"]); |
| 25 | return shortcuts.indexOf("star") >= 0; |
| 26 | } |
| 27 | |
| 28 | export function shouldUseEndpointTranslation(): boolean { |
| 29 | return getWorkspaceConfiguration().get<boolean>("useEndpointTranslation", true); |
no test coverage detected