X-Git-Url: https://git.armaanb.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fprompt.cpp;h=5b594983ade912ae5068b4ab2ddfd83386305559;hb=53bdc8a2876b57840010d5708b20dca3a46bcef5;hp=6c98b7cf2749474acabc2946ceb0e13090f0faf7;hpb=6b00badf490a075f6520e0f856aaa68ae52e67d8;p=gen-shell.git diff --git a/src/prompt.cpp b/src/prompt.cpp index 6c98b7c..5b59498 100644 --- a/src/prompt.cpp +++ b/src/prompt.cpp @@ -27,7 +27,6 @@ #include #include #include -#include static std::vector contextColors = { "bold white on red", @@ -74,7 +73,6 @@ std::string composeContexts (bool pretty /* = false */) if (pretty) combined += (combined != "" ? " " : "") + std::string ("\001") - + Color::colorize ("\002 " + contexts[i] + " \001", contextColors[i % contextColors.size ()]) + "\002"; else combined += (combined != "" ? " " : "") + contexts[i]; @@ -88,10 +86,6 @@ std::string composeContexts (bool pretty /* = false */) //////////////////////////////////////////////////////////////////////////////// std::string promptCompose () { -/* auto decoration = composeContexts (true); */ - // if (decoration.length ()) - // return "task " + decoration + "> "; - return ">>>"; }