From 8745028112be35e3f0409a5a089146d25fd3acc9 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Sat, 21 Nov 2015 01:01:35 -0800 Subject: [PATCH 1/1] Identifiers that contain $ should tab-complete :(. --- Console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Console.cpp b/Console.cpp index a7e0929..883f03f 100644 --- a/Console.cpp +++ b/Console.cpp @@ -387,7 +387,7 @@ static char **Complete(const char *word, int start, int end) { // need char *, not const char * static char name_[] = "cycript"; -static char break_[] = " \t\n\"\\'`@$><=;|&{(" ")}" ".:[]"; +static char break_[] = " \t\n\"\\'`@><=;|&{(" ")}" ".:[]"; class History { private: -- 2.45.2