diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2020-02-25 21:37:52 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2020-02-25 21:37:52 +0530 |
commit | ae1d656a270b4ca8e6b6f3f4e24a9d916759e15c (patch) | |
tree | 6a226a02c5ae00f4004ff4943f358ec1d1e877c4 | |
parent | a780ab1c80e121e38facef3d23bef12c4c7d7cf6 (diff) | |
download | nnn-ae1d656a270b4ca8e6b6f3f4e24a9d916759e15c.tar.gz |
Update help, check for mocp before using mocplay
-rwxr-xr-x | plugins/nuke | 2 | ||||
-rw-r--r-- | src/nnn.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/nuke b/plugins/nuke index 604777b..7e9c6ce 100755 --- a/plugins/nuke +++ b/plugins/nuke @@ -99,7 +99,7 @@ handle_pdf() { } handle_audio() { - if which mocplay >/dev/null 2>&1; then + if which mocp >/dev/null 2>&1 && which mocplay >/dev/null 2>&1; then mocplay "${FPATH}" "opener" >/dev/null 2>&1 exit 0 elif which mpv >/dev/null 2>&1; then @@ -3973,7 +3973,7 @@ static void show_help(const char *path) "9g ^A Top%-18c. F5 Toggle hidden\n" "9G ^E End%-21c0 Lock terminal\n" "9b ^/ Bookmark key%-12c, Pin CWD\n" - "a1-4 Context 1-4%-8c(B)Tab Cycle context\n" + "a1-4 Context 1-4%-7c(Sh)Tab Cycle context\n" "c/ Filter%-17c^N Nav-as-you-type toggle\n" "aEsc Exit prompt%-12c^L Redraw/clear prompt\n" "c? Help, conf%-14c+ Toggle proceed on open\n" |