inject the selected line into the tty input buffer
.IP "\fB-m\fP" 10
force the monochrome mode
+.IP "\fB-i\fP" 10
+inverse the order of lines so that the recent lines are at the top
.IP "\fB-z\fP" 10
remove the time prefix from zsh history
.IP "\fB-c <fg modeline> <bg modeline> <fg highlight> <bg highlight>\fP" 10
int output_to_vt_buffer = 0;
int with_colors = 1;
int zsh_history = 0;
+int inverse_order = 0;
//////////////////////////////////////////////////////////////////////
i++;
}
+ else if(strcmp(argv[i], "-i") == 0) {
+ inverse_order = 1;
+ i++;
+ }
+
else if(strcmp(argv[i], "-z") == 0) {
zsh_history = 1;
i++;
<< " [-v]"
<< " [-m]"
<< " [-z]"
+ << " [-i]"
<< " [-c <fg modeline> <bg modeline> <fg highlight> <bg highlight>]"
<< " [-o <output filename>]"
<< " [-s <pattern separator>]"
int nb_lines = 0;
while(nb_lines < nb_lines_max && !file.eof()) {
file.getline(buffer, buffer_size);
- char *s = buffer;
- if(zsh_history && *s == ':') {
- while(*s && *s != ';') s++;
- if(*s == ';') s++;
- }
- lines[nb_lines] = new char[strlen(s) + 1];
- strcpy(lines[nb_lines], s);
- nb_lines++;
+ if(strcmp(buffer, "") != 0) {
+ char *s = buffer;
+ if(zsh_history && *s == ':') {
+ while(*s && *s != ';') s++;
+ if(*s == ';') s++;
+ }
+ lines[nb_lines] = new char[strlen(s) + 1];
+ strcpy(lines[nb_lines], s);
+ nb_lines++;
+ }
+ }
+
+ if(inverse_order) {
+ for(int i = 0; i < nb_lines/2; i++) {
+ char *s = lines[nb_lines - 1 - i];
+ lines[nb_lines - 1 - i] = lines[i];
+ lines[i] = s;
+ }
}
char patterns[buffer_size];