opencode / packages /tui /src /runtime.tsx
SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
0dbc9de verified
Raw
History Blame Contribute Delete
337 Bytes
import path from "path"
export function abbreviateHome(input: string, home: string) {
if (!home) return input
const relative = path.relative(home, input)
if (relative === "") return "~"
if (relative === ".." || relative.startsWith(".." + path.sep) || path.isAbsolute(relative)) return input
return "~" + path.sep + relative
}