fe
terminal file explorer and picker
git clone https://9o.is/git/fe.git
commit 9c0b9bf7c1bbcadf1c183a0abc84131d634b10f7 parent ad0e35fcdaf32847d04eab32b216bbae34e896a1 Author: Jul <jul@9o.is> Date: Sun, 25 Jan 2026 15:29:19 -0500 action select prints to stdout Diffstat:
| M | tty_interface.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tty_interface.c b/tty_interface.c @@ -137,7 +137,7 @@ void action_select(tty_interface_t *state, const char *argv) { const struct entry *selection = entries_selected(state->entries); if (state->options->run == NULL) { - tty_printf(state->tty, "%s/%s\n", state->entries->path, selection->name); + printf("%s/%s\n", state->entries->path, selection->name); state->exit = EXIT_SUCCESS; } else { char fullpath[2*PATH_MAX];