Files
oh-my-opencode/src/tools/lsp/language-config.ts
T

6 lines
139 B
TypeScript
Raw Normal View History

import { EXT_TO_LANG } from "./constants"
export function getLanguageId(ext: string): string {
return EXT_TO_LANG[ext] || "plaintext"
}