summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-10-23 19:55:42 +0200
committerhut <hut@lavabit.com>2011-10-23 23:01:20 +0200
commitfcc74912086a9b2edfc501e7f9d5749fc5a2914b (patch)
tree29cdb229cb14e48e43f5f84e317099423f19fdf5
parent812447408be9b67850b253fe9d53a88ad31856ae (diff)
downloadranger-fcc74912086a9b2edfc501e7f9d5749fc5a2914b.tar.gz
gui.curses_shortcuts: Fix unicode bug with surrogates
-rw-r--r--ranger/gui/curses_shortcuts.py14
1 files changed, 12 insertions, 2 deletions
diff --git a/ranger/gui/curses_shortcuts.py b/ranger/gui/curses_shortcuts.py
index a977beda..4a3bb4b9 100644
--- a/ranger/gui/curses_shortcuts.py
+++ b/ranger/gui/curses_shortcuts.py
@@ -21,6 +21,10 @@ from ranger.ext.iter_tools import flatten
 from ranger.gui.color import get_color
 from ranger.core.shared import SettingsAware
 
+def _fix_surrogates(args):
+	return [isinstance(arg, str) and arg.encode('utf-8', 'surrogateescape')
+			.decode('utf-8', 'replace') or arg for arg in args]
+
 class CursesShortcuts(SettingsAware):
 	"""
 	This class defines shortcuts to faciliate operations with curses.
@@ -35,13 +39,19 @@ class CursesShortcuts(SettingsAware):
 		try:
 			self.win.addstr(*args)
 		except:
-			pass
+			try:
+				self.win.addstr(*_fix_surrogates(args))
+			except:
+				pass
 
 	def addnstr(self, *args):
 		try:
 			self.win.addnstr(*args)
 		except:
-			pass
+			try:
+				self.win.addnstr(*_fix_surrogates(args))
+			except:
+				pass
 
 	def addch(self, *args):
 		try:
0e0c7a36562da1bc930e03f1e12cb7'>87eb3aca ^
d7e48920 ^
9da067db ^

d7e48920 ^
4a48bedc ^
f116818c ^
d7e48920 ^

7d07cd1d ^
b1f0fa4d ^



















9da067db ^

87eb3aca ^
d7e48920 ^
4a48bedc ^
9da067db ^



a65a32ae ^
9da067db ^


87eb3aca ^
d7e48920 ^

300a1d6e ^
f24eeaab ^
4a48bedc ^
f24eeaab ^
4a48bedc ^
9da067db ^



0606f4ac ^

294b2ab3 ^
f24eeaab ^

0606f4ac ^






5eb5a8de ^
f24eeaab ^



4a48bedc ^
f24eeaab ^







87eb3aca ^
62ae069e ^
4a48bedc ^
62ae069e ^
28191d31 ^
b07576d2 ^

28191d31 ^

b07576d2 ^

28191d31 ^
62ae069e ^
b07576d2 ^

62ae069e ^
b07576d2 ^
62ae069e ^

5eb5a8de ^

87eb3aca ^
5eb5a8de ^
4a48bedc ^
5eb5a8de ^
87eb3aca ^
62ae069e ^

f24eeaab ^
62ae069e ^
4a48bedc ^
62ae069e ^





f24eeaab ^
62ae069e ^



300a1d6e ^



4a48bedc ^
300a1d6e ^


























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