summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/defaults/rifle.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/defaults/rifle.conf b/ranger/defaults/rifle.conf
index a1fe6a62..cd3f8685 100644
--- a/ranger/defaults/rifle.conf
+++ b/ranger/defaults/rifle.conf
@@ -157,7 +157,7 @@ ext 7z|ace|ar|arc|bz2?|cab|cpio|cpt|deb|dgc|dmg|gz,  has aunpack = aunpack -- "$
 ext iso|jar|msi|pkg|rar|shar|tar|tgz|xar|xpi|xz|zip, has aunpack = aunpack -- "$@"
 
 # Fallback:
-ext tar|gz, has tar = tar vvtf "$@"
+ext tar|gz, has tar = tar vvtf "$@" | "$PAGER"
 ext tar|gz, has tar = tar vvxf "$@"
 
 #-------------------------------------------
#n8'>8 9 10 11 12
13
14
15
         

                                                                              








                                                                           
                             

               
#!/bin/sh
# Run this before running './mu edit' or './mu sandbox' to make sure you don't
# lose any work.
#
# You'll be editing code in lesson/recipes.mu, and any sandboxes you create
# will be in lesson/0, lesson/1, etc., from top to bottom.

set -e

mkdir lesson
cd lesson
git init
echo '**/.*.swp' > .gitignore
git add .
git commit -m 0