We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3510efc commit 7a67523Copy full SHA for 7a67523
bpython/config.py
@@ -288,6 +288,7 @@ def get_key_no_doublebind(command):
288
struct.curtsies_right_arrow_completion = config.getboolean(
289
"curtsies", "right_arrow_completion"
290
)
291
+ struct.unicode_box = config.getboolean("general", "unicode_box")
292
293
color_scheme_name = config.get("general", "color_scheme")
294
@@ -332,7 +333,7 @@ def get_key_no_doublebind(command):
332
333
struct.autocomplete_mode = default_completion
334
335
# set box drawing characters
- if config.getboolean("general", "unicode_box") and supports_box_chars():
336
+ if struct.unicode_box and supports_box_chars():
337
struct.left_border = "│"
338
struct.right_border = "│"
339
struct.top_border = "─"
0 commit comments