summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-02-24 16:46:59 +0100
committerhut <hut@lavabit.com>2010-02-24 23:54:17 +0100
commit8f2f1767a970422c104761b1666c718c54c29d91 (patch)
tree3a625798abdc293f523754d952f0f59d4c1bf482
parentc5450bd180efd57f9cbd9d3315391b8cc8238be3 (diff)
downloadranger-8f2f1767a970422c104761b1666c718c54c29d91.tar.gz
finished #52, special characters in tab completion
-rw-r--r--TODO2
-rw-r--r--ranger/ext/shell_escape.py14
-rw-r--r--ranger/fsobject/fsobject.py9
-rw-r--r--ranger/gui/widgets/console.py4
4 files changed, 26 insertions, 3 deletions
diff --git a/TODO b/TODO
index d475f099..78aaeb97 100644
--- a/TODO
+++ b/TODO
@@ -61,7 +61,7 @@ Bugs
    (X) #41  10/01/17  capital file extensions are not recognized
    (X) #46  10/01/19  old username displayed after using su
    (X) #49  10/01/19  fix unit tests :'(
-   ( ) #52  10/01/23  special characters in tab completion
+   (X) #52  10/01/23  special characters in tab completion
    (X) #54  10/01/23  max_dirsize_for_autopreview not working
    ( ) #60  10/02/05  utf support improvable
    (X) #62  10/02/15  curs_set can raise an exception
diff --git a/ranger/ext/shell_escape.py b/ranger/ext/shell_escape.py
index 8a78fc53..682cd86f 100644
--- a/ranger/ext/shell_escape.py
+++ b/ranger/ext/shell_escape.py
@@ -16,5 +16,19 @@
 A function to escape metacharacters of arguments for shell commands.
 """
 
+META_CHARS = (' ', "'", '"', '`', '&', '|', ';',
+		'$', '!', '(', ')', '[', ']', '<', '>')
+META_DICT = dict([(mc, '\\' + mc) for mc in META_CHARS])
+
 def shell_escape(string):
+	"""Escapes by quoting"""
 	return "'" + str(string).replace("'", "'\\''") + "'"
+
+
+def shell_escape2(arg):
+	"""Escapes by adding backslashes"""
+	arg = str(arg)
+	arg = arg.replace('\\', '\\\\') # make sure this comes at the start
+	for k, v in META_DICT.items():
+		arg = arg.replace(k, v)
+	return arg
diff --git a/ranger/fsobject/fsobject.py b/ranger/fsobject/fsobject.py
index 3721aa54..4b734e8a 100644
--- a/ranger/fsobject/fsobject.py
+++ b/ranger/fsobject/fsobject.py
@@ -18,6 +18,8 @@ DOCUMENT_BASENAMES = 'README TODO LICENSE COPYING INSTALL'.split()
 
 from . import T_FILE, T_DIRECTORY, T_UNKNOWN, T_NONEXISTANT, BAD_INFO
 from ranger.shared import MimeTypeAware, FileManagerAware
+from ranger.ext.shell_escape import shell_escape2
+
 class FileSystemObject(MimeTypeAware, FileManagerAware):
 	is_file = False
 	is_directory = False
@@ -26,6 +28,7 @@ class FileSystemObject(MimeTypeAware, FileManagerAware):
 	path = None
 	basename = None
 	basename_lower = None
+	_shell_escaped_basename = None
 	dirname = None
 	extension = None
 	exists = False
@@ -76,6 +79,12 @@ class FileSystemObject(MimeTypeAware, FileManagerAware):
 		self.set_mimetype()
 		self.use()
 
+	@property
+	def shell_escaped_basename(self):
+		if self._shell_escaped_basename is None:
+			self._shell_escaped_basename = shell_escape2(self.basename)
+		return self._shell_escaped_basename
+
 	def get_description(self):
 		return "Loading " + str(self)
 
diff --git a/ranger/gui/widgets/console.py b/ranger/gui/widgets/console.py
index 5439b2a8..34c8abf5 100644
--- a/ranger/gui/widgets/console.py
+++ b/ranger/gui/widgets/console.py
@@ -413,9 +413,9 @@ class OpenConsole(ConsoleWithTab):
 			return self.line + '%s '
 		else:
 			before_word, start_of_word = self.line.rsplit(' ', 1)
-			return (before_word + ' ' + file.basename \
+			return (before_word + ' ' + file.shell_escaped_basename \
 					for file in self.fm.env.pwd.files \
-					if file.basename.startswith(start_of_word))
+					if file.shell_escaped_basename.startswith(start_of_word))
 
 	def _substitute_metachars(self, command):
 		dct = {}
s: removed copyright notice from config files' href='/akspecs/ranger/commit/ranger/defaults/apps.py?h=v1.2.1&id=a35042fb35061fc90cc1b7e9773fde98b21ee510'>a35042fb ^
845bd407 ^
871c502d ^
23236d0c ^


cc952d63 ^
845bd407 ^

a8f6fc96 ^
c3cdeb9c ^

845bd407 ^


2052eb74 ^


cc952d63 ^

23236d0c ^
cc952d63 ^


23236d0c ^
d46a05a8 ^
ea87d005 ^
cc952d63 ^
c9c7a833 ^
cc952d63 ^

23236d0c ^
cc952d63 ^
23236d0c ^


cc952d63 ^
d46a05a8 ^
23236d0c ^

cc952d63 ^
d46a05a8 ^
1b0786f2 ^



d46a05a8 ^
1b0786f2 ^





d46a05a8 ^

845bd407 ^




d46a05a8 ^
23236d0c ^


cc952d63 ^
23236d0c ^
d46a05a8 ^
23236d0c ^


cc952d63 ^
23236d0c ^

871c502d ^
cc952d63 ^
23236d0c ^

c9c7a833 ^




9f9fcdd2 ^


9f9fcdd2 ^

d46a05a8 ^
23236d0c ^







9341b0d6 ^
3bd534c9 ^











23236d0c ^
9341b0d6 ^



d46a05a8 ^
23236d0c ^




ea87d005 ^
d46a05a8 ^
ac0daa33 ^
23236d0c ^
ac0daa33 ^
845bd407 ^
d46a05a8 ^
845bd407 ^






ea87d005 ^
c3cdeb9c ^

a811c7ec ^
c3cdeb9c ^
ea87d005 ^
c3cdeb9c ^
18f904b7 ^
c3cdeb9c ^
ea87d005 ^
d46a05a8 ^
845bd407 ^
c3cdeb9c ^
845bd407 ^
d46a05a8 ^
845bd407 ^

ea87d005 ^
d46a05a8 ^
845bd407 ^






ea87d005 ^
d46a05a8 ^
845bd407 ^
8e1de917 ^
ea87d005 ^
d46a05a8 ^
845bd407 ^

ea87d005 ^
d46a05a8 ^
845bd407 ^
8e1de917 ^
845bd407 ^
d46a05a8 ^
845bd407 ^




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
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
224
225
226
227
228
229
230
231