about 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'))
 
='#n161'>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 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
/mu/blame/html/tangle.mu.html?h=main&id=b2757892d553352feb59d70b1e7241ccdafa6905'>^


4690ce81 ^
f5465e12 ^
c603cd6c ^
f5465e12 ^
76755b28 ^
f5465e12 ^
76755b28 ^
c5ffb6e1 ^

76755b28 ^
c5ffb6e1 ^
f5465e12 ^

4690ce81 ^
c5ffb6e1 ^

76755b28 ^
c5ffb6e1 ^
f5465e12 ^
9570363a ^
c603cd6c ^
c5ffb6e1 ^

4690ce81 ^
f5465e12 ^

c5ffb6e1 ^




a654e4ec ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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