diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-03-14 06:54:00 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-03-14 07:07:45 +0100 |
commit | 2c107e71572888327496d327a36737c02f64d894 (patch) | |
tree | c209961b40bce8c8874e7941801c4fbbade3ed40 /app/Comment/Language.hs | |
parent | f2e36372b4e07993a4992ab29585d4876b28e094 (diff) |
chore: refactor `Comment.Language.fromPath`
Diffstat (limited to 'app/Comment/Language.hs')
-rw-r--r-- | app/Comment/Language.hs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/app/Comment/Language.hs b/app/Comment/Language.hs index 7a9963f..3f8c7a4 100644 --- a/app/Comment/Language.hs +++ b/app/Comment/Language.hs @@ -25,9 +25,13 @@ newtype Language = Language {languageKey :: L.LanguageKey} deriving (Eq, Show, Generic) deriving newtype (Binary) -fromPath :: FilePath -> N.NonEmpty Language +-- TODO Support amiguous file languages +-- +-- @backlog +fromPath :: FilePath -> Language fromPath fp = - fromMaybe (throw $ E.UnknownFile fp) + N.head + . fromMaybe (throw $ E.UnknownFile fp) . N.nonEmpty . map (Language . L.languageName) $ L.languagesForPath fp |