aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2019-05-21 22:41:22 -0700
committerBruce Hill <bruce@bruce-hill.com>2019-05-21 22:41:22 -0700
commitb7b6b6cc74a477a3745d06bce64e284e5b2dd880 (patch)
tree7eb0fbada09039ec8ffa5b0fb7895c625db8964f /config.h
parentbff00bf75513cefc8e0814ba88777f13811c8a6d (diff)
Added ctrl-z for suspend and added a sort of hybrid mode for running
commands at the bottom of the screen instead of in a full terminal mode.
Diffstat (limited to 'config.h')
-rw-r--r--config.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/config.h b/config.h
index c9b3311..146696d 100644
--- a/config.h
+++ b/config.h
@@ -9,7 +9,7 @@
#define CD_TO_RESULT (1<<1)
#define REFRESH (1<<2)
#define CLEAR_SELECTION (1<<3)
-#define SILENT (1<<4)
+#define ONSCREEN (1<<4)
#define DEVNULL " >/dev/null"
@@ -17,18 +17,19 @@ struct {
int key;
const char *command;
int flags;
- const char *prompt;
} bindings[] = {
{'?', "less"},
- {'D', "xargs rm -rf" DEVNULL, CLEAR_SELECTION | REFRESH | SILENT},
- {'d', "xargs -I @ sh -c 'rm -rfi @ </dev/tty'", CLEAR_SELECTION | REFRESH},
- {'+', "xargs -n1 -I @ cp @ @.copy" DEVNULL, REFRESH | SILENT},
- {'m', "xargs -I @ mv -i @ . </dev/tty" DEVNULL, CLEAR_SELECTION | REFRESH | SILENT},
- {'p', "xargs -I @ cp -i @ . </dev/tty" DEVNULL, CLEAR_SELECTION | REFRESH | SILENT},
- {'n', "touch \"`printf '\\033[33;1mNew file:\\033[0m '`\"", SILENT | REFRESH | NO_FILES, "New file: "},
+ {'D', "xargs rm -rf" DEVNULL, CLEAR_SELECTION | REFRESH | ONSCREEN},
+ {'d', "xargs -I @ sh -c 'rm -rfi @ </dev/tty'", CLEAR_SELECTION | REFRESH | ONSCREEN},
+ {'+', "xargs -n1 -I @ cp @ @.copy" DEVNULL, REFRESH | ONSCREEN},
+ {'m', "xargs -I @ mv -i @ . </dev/tty" DEVNULL, CLEAR_SELECTION | REFRESH | ONSCREEN},
+ {'p', "xargs -I @ cp -i @ . </dev/tty" DEVNULL, CLEAR_SELECTION | REFRESH | ONSCREEN},
+ {'n', "touch \"`printf '\\033[33;1mNew file:\\033[0m ' >/dev/tty && head -n1 /dev/tty`\"", ONSCREEN | REFRESH | NO_FILES},
{'|', "sh -c \"`printf '> ' >/dev/tty && head -n1 /dev/tty`\"", REFRESH},
{'>', "sh -c \"`printf '> ' >/dev/tty && head -n1 /dev/tty`\"", NO_FILES | REFRESH},
+ {'r', "xargs -I @ -n1 sh -c 'mv \"@\" \"`printf \"\e[1mRename \e[0;33m%%s\e[0m: \" \"@\" >&2 && head -n1 </dev/tty`\"'",
+ REFRESH | CLEAR_SELECTION | ONSCREEN},
{'r', "xargs -I @ -n1 sh -c 'mv \"@\" \"`printf \"\\033[1mRename \\033[0;33m%%s\\033[0m: \" \"@\" >&2 && head -n1 </dev/tty`\"'",
- REFRESH | CLEAR_SELECTION},
+ REFRESH | CLEAR_SELECTION | ONSCREEN},
{0},
};