X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=selector.git;a=blobdiff_plain;f=selector.cc;h=fbd2d3dd59ed0c11632479b134e5023a3c2ce066;hp=bd50899562d76de21636d462d1ca6dfe7e8dc9ed;hb=414ff39c648ddaca4e7fde98bbc2c033f1e23d2d;hpb=c132a9e079b9acabfdc5737ff54ba2be6931a769 diff --git a/selector.cc b/selector.cc index bd50899..fbd2d3d 100644 --- a/selector.cc +++ b/selector.cc @@ -47,7 +47,9 @@ 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 inverse_order = 0; @@ -69,7 +71,11 @@ void inject_into_tty_buffer(char *string) { // Set input mode (non-canonical, *no echo*,...) tcsetattr(STDIN_FILENO, TCSANOW, &newtio); // Put the selected string in the tty input buffer + char control_q = '\021'; for(char *k = string; *k; k++) { + if(add_control_qs) { + ioctl(STDIN_FILENO, TIOCSTI, &control_q); + } ioctl(STDIN_FILENO, TIOCSTI, k); } // Restore the old settings @@ -547,7 +553,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); @@ -568,15 +574,14 @@ 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++; } @@ -588,31 +593,20 @@ void read_file(const char *input_filename, while(*t == ' ') t++; } - // Copy the string while transforming the ctrl characters into - // printable characters - - s = buffer; - - while(*t) { - u = unctrl(*t++); - while(*u) { *s++ = *u++; } - } - *s = '\0'; - // Check for duplicates with the hash table and insert the line // in the list if necessary 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 @@ -667,11 +661,22 @@ int main(int argc, char **argv) { i += 2; } + else if(strcmp(argv[i], "-x") == 0) { + check_opt(argc, argv, i, 1, "