From 26ba41d08f86fc006edf9c0552205e2851a1060b Mon Sep 17 00:00:00 2001 From: Shav Kinderlehrer Date: Thu, 10 Aug 2023 10:44:06 -0400 Subject: Fix rendering issues + add git comp --- source/comp/path.d | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 source/comp/path.d (limited to 'source/comp/path.d') diff --git a/source/comp/path.d b/source/comp/path.d new file mode 100644 index 0000000..b8f9914 --- /dev/null +++ b/source/comp/path.d @@ -0,0 +1,33 @@ +module comp.path; + +import std.conv; +import std.regex; +import std.array; + +import std.file : getcwd; +import std.path : expandTilde; +import std.algorithm : reverse; + +string path(int pathlen) { + string ps; + + string home = expandTilde("~"); + string path = replaceFirst(getcwd(), regex(home), "~"); + + string[] splitPath = path.split("/").reverse(); + + string[] revSplitPath; + for (int i = 0; i < pathlen; i++) { + if (i >= splitPath.length) + break; + + revSplitPath ~= splitPath[i]; + } + + splitPath = revSplitPath.reverse(); + + ps ~= splitPath.join("/"); + + return ps ~ "/"; + +} -- cgit v1.2.3