Fix display of unicode filenames.
Internally, the filenames are stored as un-decoded unicode. I tried decoding them, but then haskell tries to access the wrong files. Hmm. So, I've unhappily chosen option "B", which is to decode filenames before they are displayed.
This commit is contained in:
parent
e7a3475704
commit
fe55b4644e
11 changed files with 63 additions and 21 deletions
|
@ -49,7 +49,7 @@ calcGitLink file key = do
|
|||
cwd <- liftIO $ getCurrentDirectory
|
||||
let absfile = case absNormPath cwd file of
|
||||
Just f -> f
|
||||
Nothing -> error $ "unable to normalize " ++ file
|
||||
Nothing -> error $ "unable to normalize " ++ showFile file
|
||||
return $ relPathDirToDir (parentDir absfile) (Git.workTree g) ++
|
||||
annexLocation key
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue