about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xranger/ext/rifle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/ext/rifle.py b/ranger/ext/rifle.py
index 08f89af3..daf9381f 100755
--- a/ranger/ext/rifle.py
+++ b/ranger/ext/rifle.py
@@ -199,7 +199,7 @@ class Rifle(object):
 			action = "$TERMCMD -e %s" % action
 		if 'f' in flags:
 			if 'setsid' in get_executables():
-				action = "setsid %s > /dev/null 2> /dev/null" % action
+				action = "setsid %s > /dev/null 2> /dev/null &" % action
 			else:
 				action = "nohup %s > /dev/null 2> /dev/null &" % action
 		return action