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 cd63e8a commit 16c3f58Copy full SHA for 16c3f58
examples/full-screen/simple-demos/line-prefixes.py
@@ -33,7 +33,7 @@
33
34
def get_line_prefix(lineno, wrap_count):
35
if wrap_count == 0:
36
- return HTML(f'[{lineno}] <style bg="orange" fg="black">--></style> ')
+ return HTML(f'[{lineno}] <style bg="orange" fg="black">--></style> ')
37
text = str(lineno) + "-" + "*" * (lineno // 2) + ": "
38
return HTML(f'[{lineno}.{wrap_count}] <style bg="ansigreen" fg="ansiblack">{text}</style>')
39
examples/prompts/fancy-zsh-prompt.py
@@ -53,7 +53,7 @@ def get_prompt() -> HTML:
53
" <env> py36 </env> "
54
f" <time>{datetime.datetime.now().isoformat()}</time> "
55
"</right-part>"
56
- )
+ )
57
58
used_width = sum(
59
[
0 commit comments