Minor improvements
parent
fbf2d6f36d
commit
4847f0a9a4
|
@ -6,6 +6,7 @@
|
|||
"onefile",
|
||||
"Packrat",
|
||||
"pyparsing",
|
||||
"rlimit",
|
||||
"runstatus",
|
||||
"srange",
|
||||
"subvar"
|
||||
|
|
|
@ -13,12 +13,10 @@
|
|||
- Command and macro autocomplete
|
||||
- step-by-step reduction
|
||||
- Syntax highlighting: parenthesis, bound variables, macros, etc
|
||||
- Pin header to top of screen
|
||||
- PyPi package
|
||||
- Smart alignment in all printouts
|
||||
- Full-reduce option
|
||||
- Set reduction limit command
|
||||
- Runtime limit
|
||||
- Free variable warning
|
||||
|
||||
## Mention in Docs
|
||||
- lambda functions only work with single-letter arguments
|
||||
|
|
|
@ -263,6 +263,7 @@ def help(command, runner) -> None:
|
|||
printf(
|
||||
HTML(
|
||||
"\n<cmd_text>" +
|
||||
|
||||
"<cmd_h>Usage:</cmd_h>" +
|
||||
"\n" +
|
||||
"\tWrite lambda expressions using your <cmd_key>\\</cmd_key> key." +
|
||||
|
@ -277,6 +278,8 @@ def help(command, runner) -> None:
|
|||
f"\t<cmd_code>{name}</cmd_code> \t {text}"
|
||||
for name, text in help_texts.items()
|
||||
]) +
|
||||
"\n\n"
|
||||
"<muted>Detailed documentation can be found on this project's git page.</muted>" +
|
||||
"</cmd_text>"
|
||||
),
|
||||
style = lamb.utils.style
|
||||
|
|
Reference in New Issue