extensionsto key_binding

This commit is contained in:
nova
2025-07-06 13:21:04 +02:00
parent 05ba7c82a0
commit 47470e4e64
4 changed files with 129 additions and 45 deletions

3
main.c
View File

@ -17,6 +17,7 @@ unsigned int temp_width = 0;
unsigned int settings;
unsigned int file_modifiers;
unsigned int status;
char *start_path;
WINDOW *win_t;
WINDOW *win_b;
@ -90,6 +91,7 @@ int main(){
}
threading_free();
free(start_path);
pthread_join(thread_l, NULL);
pthread_join(thread_r, NULL);
@ -178,5 +180,6 @@ void init() {
colors_init();
ESCDELAY = 10;
setenv("START_PATH", getcwd(NULL, 0), 0);
}