diff options
| author | verdant <im@verdant.ee> | 2026-07-23 03:02:19 +0800 |
|---|---|---|
| committer | verdant <im@verdant.ee> | 2026-07-23 03:02:19 +0800 |
| commit | 5a557f19848056a388cc6ac8596b8587d98b3860 (patch) | |
| tree | 68169d4aff93b6623a0237fe2afda41475ca6451 /keys.h | |
| parent | 6ef3bfdf2f7e19cd74220a2c8c56250a7f13f0ce (diff) | |
| download | sf-5a557f19848056a388cc6ac8596b8587d98b3860.tar.gz sf-5a557f19848056a388cc6ac8596b8587d98b3860.zip | |
Implement keys handling
'q' for quiting, j and k for scrolling up and down in the file manager
Diffstat (limited to 'keys.h')
| -rw-r--r-- | keys.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +#ifndef SF_KEYS_H +#define SF_KEYS_H + +#include "fm.h" +#include "wm.h" + +void handling_keys(int ch, terminal *t, fm_info *i); + +#endif /* SF_KEYS_H */ |
