github.com/elves/elvish@v0.15.0/pkg/cli/lscolors/stat_windows.go (about) 1 package lscolors 2 3 import "os" 4 5 func isMultiHardlink(info os.FileInfo) bool { 6 // Windows supports hardlinks, but it is not exposed directly. We omit the 7 // implementation for now. 8 // TODO: Maybe implement it? 9 return false 10 }