()
| 143 | } |
| 144 | |
| 145 | export function getMetaKeyName() { |
| 146 | const platform = getPlatform(); |
| 147 | switch (platform) { |
| 148 | case "mac": |
| 149 | return "Cmd"; |
| 150 | case "linux": |
| 151 | case "windows": |
| 152 | return "Ctrl"; |
| 153 | default: |
| 154 | return "Ctrl"; |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | export function getExtensionVersion(): string { |
| 159 | const extension = vscode.extensions.getExtension("continue.continue"); |
no test coverage detected