aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2019-05-31 18:55:28 -0700
committerBruce Hill <bruce@bruce-hill.com>2019-05-31 18:55:28 -0700
commit58d4c86389fce9a2fda0d22500e62ae078c51f3f (patch)
treede5d95061e6b508d37a39f7d0c8327ccb724a90e
parent0fa6e3a636876c4d016d7eeee5c4d38d6dcf1a67 (diff)
Switched ':' to use "sh" instead of "$SHELL" because not all shells take
arguments.
-rw-r--r--config.def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 8c5fbe0..a04c6f0 100644
--- a/config.def.h
+++ b/config.def.h
@@ -171,7 +171,7 @@ else xdg-open "$BBCURSOR"; fi
{{'N'}, "name=`bb '?New dir: '` && mkdir \"$name\"; bb +r \"+goto:$name\"", EM("New directory")},
{{'|'}, "cmd=`bb '?|'` && " PIPE_SELECTION_TO "sh -c \"$cmd\" && " PAUSE "; bb +r",
EM("Pipe")" selected files to a command"},
- {{':'}, "$SHELL -c \"`bb '?:'`\" -- \"$@\"; " PAUSE "; bb +refresh",
+ {{':'}, "sh -c \"`bb '?:'`\" -- \"$@\"; " PAUSE "; bb +refresh",
EM("Run")" a command"},
{{'>'}, "$SHELL", "Open a "EM("shell"), NORMAL_TERM},
{{'m'}, "read -n1 -p 'Mark: ' m && bb \"+mark:$m;$PWD\"", "Set "EM("mark")},