diff options
| author | twells46 <tom@wellsth.com> | 2026-04-16 20:24:28 -0500 |
|---|---|---|
| committer | twells46 <tom@wellsth.com> | 2026-04-16 20:24:28 -0500 |
| commit | d1d271cb51d5322fa24ec325a3065debf4c4e79b (patch) | |
| tree | ad9970c12bb663b8d59aa199c8806205b444d142 /config_key.h.in | |
| parent | 3cc0f63c18e30cd3da3106eedca4dcd463ce5bfe (diff) | |
Diffstat (limited to 'config_key.h.in')
| -rw-r--r-- | config_key.h.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/config_key.h.in b/config_key.h.in index 5fcfdb8..30d5909 100644 --- a/config_key.h.in +++ b/config_key.h.in @@ -76,8 +76,8 @@ static inline void (*fm_key(u32 cp))(struct fm *) case 'R': return act_refresh; case K(MOD_CTRL, 'l'): return act_redraw; - case 'q': return act_quit; - case 'Q': return act_quit_print_pwd; + case 'Q': return act_quit; + case 'q': return act_quit_print_pwd; case 't': return cmd_trash; case 'T': return act_cd_trash; @@ -85,7 +85,10 @@ static inline void (*fm_key(u32 cp))(struct fm *) case 'o': return cmd_exec_open; case 'O': return cmd_exec_open_bg; - case 'f': return cmd_touch; + case 'e': return cmd_editor; + + /* case 'f': return cmd_touch; */ + case 'f': return cmd_gd; case 'n': return cmd_mkdir; case 'r': return cmd_rename; case 'x': return act_stat; |