]> git.armaanb.net Git - gen-shell.git/blobdiff - src/prompt.cpp
further reduction
[gen-shell.git] / src / prompt.cpp
index 93654d4653855c4c58bbd6fe749f77023983abfb..5b2e0487ae0284f95d7beccfcabbd2504c7e35e7 100644 (file)
 #include <vector>
 #include <string>
 
-static std::vector <std::string> contextColors = {
-  "bold white on red",
-  "bold white on blue",
-  "bold white on green",
-  "bold white on magenta",
-  "black on cyan",
-  "black on yellow",
-  "black on white",
-};
-
 static std::vector <std::string> contexts;
 
 std::string composeContexts (bool pretty = false);
@@ -65,24 +55,6 @@ int promptAdd (const std::string& context)
   return 0;
 }
 
-////////////////////////////////////////////////////////////////////////////////
-std::string composeContexts (bool pretty /* = false */)
-{
-  std::string combined;
-  for (unsigned int i = 0; i < contexts.size (); i++)
-    if (pretty)
-      combined += (combined != "" ? " " : "")
-                + std::string ("\001")
-                + "\002";
-    else
-      combined += (combined != "" ? " " : "") + contexts[i];
-
-  if (combined != "")
-    combined += ' ';
-
-  return combined;
-}
-
 ////////////////////////////////////////////////////////////////////////////////
 std::string promptCompose ()
 {