refractoring
This commit is contained in:
parent
abf758cdbf
commit
02d469948e
7
main.c
7
main.c
@ -10,7 +10,8 @@ unsigned int terminal_height;
|
||||
unsigned int terminal_width;
|
||||
unsigned int temp_heigth = 0; //used for screen refresh
|
||||
unsigned int temp_width = 0;
|
||||
unsigned int settings ;
|
||||
unsigned int settings;
|
||||
unsigned int file_modifiers;
|
||||
unsigned int status; //bit 0 = enable
|
||||
char **content_l; //content of parent dir, used in left window
|
||||
char **content_m; //content of current dir, used in main window
|
||||
@ -27,7 +28,7 @@ int main() {
|
||||
WINDOW *winl = newwin(terminal_height, terminal_width/3, terminal_height, (terminal_width/3));
|
||||
WINDOW *winm = newwin(terminal_height, terminal_width/3, 0, 0);
|
||||
WINDOW *winr = newwin(terminal_height, terminal_width/3, terminal_height, ((terminal_width/3)*2));
|
||||
settings ^= SETTINGS_HIDDEN_FILES;
|
||||
file_modifiers ^= FILE_MODIFIERS_HIDDEN_FILES;
|
||||
status ^= STATUS_RUN_BACKEND;
|
||||
char input = 0;
|
||||
|
||||
@ -67,7 +68,7 @@ int main() {
|
||||
|
||||
|
||||
if ((input = getch())) {
|
||||
user_interactions(&input, &status, &settings);
|
||||
user_interactions(&input, &status, &settings, &file_modifiers);
|
||||
}
|
||||
}
|
||||
free(content_l);
|
||||
|
Loading…
x
Reference in New Issue
Block a user