Fixed 'Enter' key behavior (should work properly for mac again now)
This commit is contained in:
parent
e25eaf9b92
commit
05e37166fc
12
bindings.bb
12
bindings.bb
@ -78,9 +78,15 @@ Ctrl-a: # Select all files here
|
||||
|
||||
Section: File Actions
|
||||
Enter: # Open file/directory
|
||||
if [ -d "$BBCURSOR" ]; then bb +cd:"$BBCURSOR";
|
||||
elif file -bi "$BBCURSOR" | grep -q '^\(text/\|inode/empty\)'; then $EDITOR "$BBCURSOR";
|
||||
else open "$BBCURSOR"; fi
|
||||
if [ "$(uname)" = "Darwin" ]; then
|
||||
if [ -d "$BBCURSOR" ]; then bb +cd:"$BBCURSOR";
|
||||
elif file -bI "$BBCURSOR" | grep -q '^\(text/\|inode/empty\)'; then $EDITOR "$BBCURSOR";
|
||||
else open "$BBCURSOR"; fi
|
||||
else
|
||||
if [ -d "$BBCURSOR" ]; then bb +cd:"$BBCURSOR";
|
||||
elif file -bi "$BBCURSOR" | grep -q '^\(text/\|inode/empty\)'; then $EDITOR "$BBCURSOR";
|
||||
else xdg-open "$BBCURSOR"; fi
|
||||
fi
|
||||
e: # Edit file in $EDITOR
|
||||
$EDITOR "$BBCURSOR" || pause
|
||||
d: # Delete a file
|
||||
|
Loading…
Reference in New Issue
Block a user