X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=selector.cc;h=5480539459f29794e5d1e349872926a627459873;hb=e5cac5f305479e8c1003117cc226d6dea9f9adde;hp=99a9057cf2a64289cc8f7383e08ee72be6471137;hpb=ed0a1fe13a90d9e96145bdcf1a13695e0eeb3a54;p=selector.git diff --git a/selector.cc b/selector.cc index 99a9057..5480539 100644 --- a/selector.cc +++ b/selector.cc @@ -23,7 +23,7 @@ */ // To use it as a super-history-search for bash: -// alias h='selector -d -i -b -v -f <(history)' +// selector -q -b -i -d -v -w -l 10000 <(history) #include #include @@ -47,9 +47,12 @@ const int buffer_size = 4096; int nb_lines_max = 1000; char pattern_separator = ';'; +char label_separator = '\0'; int output_to_vt_buffer = 0; +int add_control_qs = 0; int with_colors = 1; -int zsh_history = 0, bash_history = 0; +int zsh_history = 0; +int bash_history = 0; int inverse_order = 0; int remove_duplicates = 0; int use_regexp = 0; @@ -68,8 +71,13 @@ void inject_into_tty_buffer(char *string) { memset(&newtio, 0, sizeof(newtio)); // Set input mode (non-canonical, *no echo*,...) tcsetattr(STDIN_FILENO, TCSANOW, &newtio); + const char control_q = '\021'; // Put the selected string in the tty input buffer - for(char *k = string; *k; k++) { + for(const char *k = string; *k; k++) { + if(add_control_qs && !(*k >= ' ' && *k <= '~')) { + // Add ^Q to quote control characters + ioctl(STDIN_FILENO, TIOCSTI, &control_q); + } ioctl(STDIN_FILENO, TIOCSTI, k); } // Restore the old settings @@ -138,6 +146,7 @@ int *new_hash_table(int hash_table_size) { int test_and_add(char *new_string, int new_index, char **strings, int *hash_table, int hash_table_size) { + unsigned int code = 0; // This is my recipe. I checked, it seems to work (as long as @@ -341,7 +350,6 @@ void update_screen(int *current_line, int *temporary_line, int motion, int nb_printed_lines = 0; - clear(); use_default_colors(); addstr("\n"); @@ -437,6 +445,8 @@ void update_screen(int *current_line, int *temporary_line, int motion, buffer[k++] = '\n'; buffer[k++] = '\0'; + clrtoeol(); + // Highlight the highlighted line ... if(l == new_line) { @@ -471,6 +481,8 @@ void update_screen(int *current_line, int *temporary_line, int motion, addnstr("[empty choice]\n", console_width); } + clrtobot(); + // Draw the modeline move(0, 0); @@ -546,7 +558,7 @@ void read_file(const char *input_filename, int nb_lines_max, int *nb_lines, char **lines, int hash_table_size, int *hash_table) { - char buffer[buffer_size], raw_line[buffer_size];; + char raw_line[buffer_size];; ifstream file(input_filename); @@ -567,34 +579,24 @@ void read_file(const char *input_filename, exit(1); } - char *s, *t; - const char *u; + char *t; t = raw_line; // Remove the zsh history prefix if(zsh_history && *t == ':') { - while(*t && *t != ';') s++; + while(*t && *t != ';') t++; if(*t == ';') t++; } // Remove the bash history prefix - if(bash_history && (*t == ' ' || (*t >= '0' && *t <= '9'))) { - while(*t == ' ' || (*t >= '0' && *t <= '9')) t++; - } - - // Copy the string while transforming the ctrl characters into - // printable characters - - s = buffer; - - while(*t) { - u = unctrl(*t++); - while(*u) { *s++ = *u++; } + if(bash_history) { + while(*t == ' ') t++; + while(*t >= '0' && *t <= '9') t++; + while(*t == ' ') t++; } - *s = '\0'; // Check for duplicates with the hash table and insert the line // in the list if necessary @@ -602,14 +604,14 @@ void read_file(const char *input_filename, int dup; if(hash_table) { - dup = test_and_add(buffer, *nb_lines, lines, hash_table, hash_table_size); + dup = test_and_add(t, *nb_lines, lines, hash_table, hash_table_size); } else { dup = -1; } if(dup < 0) { - lines[*nb_lines] = new char[strlen(buffer) + 1]; - strcpy(lines[*nb_lines], buffer); + lines[*nb_lines] = new char[strlen(t) + 1]; + strcpy(lines[*nb_lines], t); } else { // The string was already in there, so we do not allocate a // new string but use the pointer to the first occurence of it @@ -664,11 +666,22 @@ int main(int argc, char **argv) { i += 2; } + else if(strcmp(argv[i], "-x") == 0) { + check_opt(argc, argv, i, 1, "