()
| 10 | * @returns boolean indicating if vim mode is active |
| 11 | */ |
| 12 | export function isVimModeEnabled(): boolean { |
| 13 | const config = getGlobalConfig() |
| 14 | return config.editorMode === 'vim' |
| 15 | } |
| 16 | |
| 17 | export function getNewlineInstructions(): string { |
| 18 | // Apple Terminal on macOS uses native modifier key detection for Shift+Enter |
no test coverage detected