mirror of
https://gittea.dev/nova/th.git
synced 2025-10-21 18:30:15 -04:00
33 lines
753 B
C
33 lines
753 B
C
#ifndef INTERACTIONS_GUARD
|
|
#define INTERACTIONS_GUARD
|
|
#include "interactions.c"
|
|
#endif
|
|
|
|
|
|
void user_interactions();
|
|
void quit_program();
|
|
void toggle_selection();
|
|
void move_right();
|
|
void move_up(int passes);
|
|
void move_down(int passes);
|
|
void move_left(int passes);
|
|
void jump_bottom();
|
|
void jump_top();
|
|
void toggle_hidden_files();
|
|
void open_with();
|
|
void rename_hovered();
|
|
void delete();
|
|
void makedir();
|
|
void makefile();
|
|
void update();
|
|
void enter_shell(int passes, int index);
|
|
void not_implemented(int passes, int index);
|
|
void jump_to_dir(int passes, int index);
|
|
void order_by(int passes, int index);
|
|
void cmd_on_selected(int passes, int index);
|
|
void yank_file(int passes, int index);
|
|
void paste();
|
|
void search();
|
|
void search_next();
|
|
void search_previous();
|