diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2019-09-30 18:02:55 -0700 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2019-09-30 18:02:55 -0700 |
| commit | 7f402ee32afa7ed065c26d83fbe4537cfeae98f8 (patch) | |
| tree | a084bad2bfc7b0b05e557be55bb5696a363a689c | |
| parent | d83aac7bb1824ee6c6ec3ac5c4580170aa275113 (diff) | |
Fixed some typos in the bindings.
| -rw-r--r-- | bindings.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings.bb b/bindings.bb index 0ef25f8..a5fd9f0 100644 --- a/bindings.bb +++ b/bindings.bb @@ -78,7 +78,7 @@ Ctrl-a: # Select all files here Section: File Actions Enter: # Open file/directory - if [ -d "$BBCURSOR ]; then bb +cd:"$BBCURSOR"; + if [ -d "$BBCURSOR" ]; then bb +cd:"$BBCURSOR"; elif file -bi "$BBCURSOR" | grep -q '^\(text/\|inode/empty\)'; then $EDITOR "$BBCURSOR"; else open "$BBCURSOR"; fi e: # Edit file in $EDITOR @@ -91,7 +91,7 @@ D: # Delete all selected files confirm && rm -rf "$@" && bb +refresh && bb +deselect: "$@" Ctrl-v: # Move files here printf "\033[1mMoving the following to here:\n \033[33m$(printf ' %s\n' "$@")\033[0m" | more && - confirm && spin mv -i "$@" . && bb +refresh && bb +deselect "$@" && + confirm && spin mv -i "$@" . && bb +refresh && bb +deselect:"$@" && for f; do bb +sel:"$(basename "$f")"; done || pause c: # Copy a file |
