summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--TODO1
-rw-r--r--ranger/actions.py9
-rw-r--r--ranger/defaults/keys.py2
3 files changed, 10 insertions, 2 deletions
diff --git a/TODO b/TODO
index 55e44420..a5561573 100644
--- a/TODO
+++ b/TODO
@@ -19,3 +19,4 @@ General
    (X) #11  09/12/27  filter
    (X) #12  09/12/27  jump through the list in a specific order
    ( ) #14  09/12/29  make filelists inherit from pagers
+   ( ) #15  09/12/29  better way of running processes!!~
diff --git a/ranger/actions.py b/ranger/actions.py
index 3e5ebdb7..3aef7d86 100644
--- a/ranger/actions.py
+++ b/ranger/actions.py
@@ -249,7 +249,14 @@ class Actions(EnvironmentAware, SettingsAware):
 	def runcmd(self, cmd, suspend=True, wait=True):
 		from ranger.applications import spawn
 		spawn(cmd, fm=self, suspend=wait, wait=wait)
-
+	
+	def spawn_shell(self):
+		from ranger.applications import run
+		from subprocess import STDOUT
+		run("bash", flags='', fm=self,
+				mode=0, shell=True, stdin=None,
+				apps=self.apps, stderr=STDOUT)
+	
 	def force_load_preview(self):
 		cf = self.env.cf
 		if cf is not None:
diff --git a/ranger/defaults/keys.py b/ranger/defaults/keys.py
index 654b1c7b..6bce7289 100644
--- a/ranger/defaults/keys.py
+++ b/ranger/defaults/keys.py
@@ -55,7 +55,7 @@ def initialize_commands(command_list):
 	bind('dd', fm.cut())
 	bind('p', fm.paste())
 
-	bind('s', fm.spawn('bash'))
+	bind('s', fm.spawn_shell())
 
 	bind(TAB, fm.search(order='tag'))
 
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223