We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46a1102 commit 6206f43Copy full SHA for 6206f43
stmhal/help.c
@@ -67,6 +67,7 @@ STATIC const char *help_text =
67
" CTRL-B -- on a blank line, enter normal REPL mode\n"
68
" CTRL-C -- interrupt a running program\n"
69
" CTRL-D -- on a blank line, do a soft reset of the board\n"
70
+" CTRL-E -- on a blank line, enter paste mode\n"
71
"\n"
72
"For further help on a specific object, type help(obj)\n"
73
;
stmhal/mpconfigport.h
@@ -40,6 +40,7 @@
40
#define MICROPY_STACK_CHECK (1)
41
#define MICROPY_HELPER_REPL (1)
42
#define MICROPY_REPL_EMACS_KEYS (1)
43
+#define MICROPY_REPL_AUTO_INDENT (1)
44
#define MICROPY_ENABLE_SOURCE_LINE (1)
45
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
46
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_FLOAT)
0 commit comments