summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2012-01-24 10:54:30 +0100
committerhut <hut@lavabit.com>2012-01-24 10:54:30 +0100
commit9e146c8272e25b98d0f196bc34ac1725f894863a (patch)
treed25034b4fe12de7463611340e47234fcabef530e
parent5db94646ffdd492103a40a2e33758b1827032661 (diff)
downloadranger-9e146c8272e25b98d0f196bc34ac1725f894863a.tar.gz
defaults/commands: fixed TERMCMD in :terminal
-rw-r--r--ranger/defaults/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/defaults/commands.py b/ranger/defaults/commands.py
index ba9030c5..c9729999 100644
--- a/ranger/defaults/commands.py
+++ b/ranger/defaults/commands.py
@@ -464,7 +464,7 @@ class terminal(Command):
 			command = 'x-terminal-emulator'
 		if command not in get_executables():
 			command = 'xterm'
-		self.fm.run('x-terminal-emulator', flags='d')
+		self.fm.run(command, flags='d')
 
 
 class delete(Command):
ef='/akspecs/ranger/blame/HACKING?h=v1.1.0&id=4ea0f69aed8d4c173d9abbd0a1bd76d6afe69ccb'>^
29028631 ^


f8f6f7f9 ^








29028631 ^
f8f6f7f9 ^





















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
73
74
75
76
77
78
79
80
81
82
83
84
85