X Tutup
Skip to content

Commit 597ef02

Browse files
committed
< bob_f> "The dawn of a new era !"
A first attempt of an (alternative) Gtk+ frontend.
1 parent 05959c2 commit 597ef02

File tree

8 files changed

+2041
-1321
lines changed

8 files changed

+2041
-1321
lines changed

bpython/cli.py

Lines changed: 603 additions & 1317 deletions
Large diffs are not rendered by default.

bpython/config.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ def loadini(struct, configfile):
105105
'background': 'd',
106106
'output': 'w',
107107
'main': 'c',
108+
'paren': 'R',
108109
'prompt': 'c',
109110
'prompt_more': 'g',
110111
}

bpython/formatter.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,14 @@
6060
Comment: 'comment',
6161
String: 'string',
6262
Literal: 'string',
63-
Literal.String: 'string',
6463
Error: 'error',
6564
Number: 'number',
6665
Token.Literal.Number.Float: 'number',
6766
Operator: 'operator',
68-
Operator.Word: 'operator',
6967
Punctuation: 'punctuation',
7068
Token: 'token',
7169
Whitespace: 'background',
72-
Parenthesis: 'punctuation',
70+
Parenthesis: 'paren',
7371
Parenthesis.UnderCursor: 'operator'
7472
}
7573

0 commit comments

Comments
 (0)
X Tutup