Skip to content

Commit a947422

Browse files
add reimport keys to help message
1 parent 3576813 commit a947422

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bpython/curtsiesfrontend/repl.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
Try using undo ({config.undo_key})!
5858
Edit the current line ({config.edit_current_block_key}) or the entire session ({config.external_editor_key}) in an external editor! (currently {config.editor})
5959
Save sessions ({config.save_key}) or post them to pastebins ({config.pastebin_key})! Current pastebin helper: {config.pastebin_helper}
60-
Re-execute the current session and reload all modules to test out changes to a module!
61-
Toggle auto-reload mode to re-execute the current session when a module you've imported is modified!
60+
Re-execute the current session and reload all modules ({config.reimport_key}) to test out changes to a module!
61+
Toggle auto-reload mode ({config.toggle_file_watch_key}) to re-execute the current session when a module you've imported is modified!
6262
6363
Use bpython-curtsies -i your_script.py to run a file in interactive mode (interpreter in namespace of script).
6464
Use bpython-curtsies -t your_script.py to paste in the contents of a file, as though you typed them.
@@ -1113,7 +1113,7 @@ def version_help_text(self):
11131113
HELP_MESSAGE.format(config_file_location=default_config_path(),
11141114
example_config_url='https://raw.githubusercontent.com/bpython/bpython/master/sample-config',
11151115
config=self.config)
1116-
)
1116+
)
11171117

11181118
def key_help_text(self):
11191119
NOT_IMPLEMENTED = ['suspend', 'cut to buffer', 'search', 'last output', 'yank from buffer', 'cut to buffer']

0 commit comments

Comments
 (0)