X-Git-Url: https://git.armaanb.net/?a=blobdiff_plain;f=src%2Fprompt.cpp;h=93654d4653855c4c58bbd6fe749f77023983abfb;hb=7e910e686c101122fbdf8a463e370d2bc703a5d6;hp=3eb12b2fcc4dfe5510403ed4246934553e76e7a6;hpb=eb1e18ee5dc8235e48dd5184f60c13c33cad6add;p=gen-shell.git diff --git a/src/prompt.cpp b/src/prompt.cpp index 3eb12b2..93654d4 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,11 +86,7 @@ std::string composeContexts (bool pretty /* = false */) //////////////////////////////////////////////////////////////////////////////// std::string promptCompose () { - auto decoration = composeContexts (true); - if (decoration.length ()) - return "task " + decoration + "> "; - - return "tasksh> "; + return "% "; } ////////////////////////////////////////////////////////////////////////////////