]> git.saurik.com Git - cycript.git/blobdiff - Console.cpp
Add a space character more consistently.
[cycript.git] / Console.cpp
index bc353795e48633bac762dbec5a41183b29a56c22..2d6b566e05aa57565bee6e85dbeef4a0179351d3 100644 (file)
@@ -366,6 +366,8 @@ static char **Complete(const char *word, int start, int end) {
     size_t colon(common.find(':'));
     if (colon != std::string::npos)
         common = common.substr(0, colon + 1);
+    if (completions.size() == 1)
+        common += ' ';
 
     char **results(reinterpret_cast<char **>(malloc(sizeof(char *) * (count + 2))));