From f7a533affd8489bffe5b79738754255e5d11f693 Mon Sep 17 00:00:00 2001 From: Gino D Date: Sun, 8 Jan 2023 03:04:18 +0100 Subject: [PATCH] Fixed wording --- src/picowatch.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/picowatch.py b/src/picowatch.py index 61a4747..03baeb2 100644 --- a/src/picowatch.py +++ b/src/picowatch.py @@ -904,22 +904,22 @@ while True: tab.head('Keywords', 'Shortcut', 'Parameters', 'Description') tab.line('help', '?', '', 'Show keywords and their description') tab.line('boot', '.', '', 'Do a soft reset and run main.py (if exists) in REPL mode') - tab.line('test', '!', ' (default: main.py)', 'Run a script from PC on the Pyboard and print out the results in raw-REPL mode') - tab.line('run', '!!', ' (default: main.py)', 'Run a script on the Pyboard and print out the results in raw-REPL mode') + tab.line('test', '!', '[] (default: main.py)', 'Run a script from PC on the Pyboard and print out the results in raw-REPL mode') + tab.line('run', '!!', '[] (default: main.py)', 'Run a script on the Pyboard and print out the results in raw-REPL mode') tab.line('ctrl + C', '', '', 'Interrupts the currently running code in REPL or raw-REPL mode') tab.line('ctrl + D', 'exit', '', 'Exit Picowatch Terminal') + tab.line('ctrl + Z', 'exit', '', 'Same as ctrl + D, Exit Picowatch Terminal') tab.line('uname', 'os', '', 'Pyboard name and version') - tab.line('edit', 'vim', ' [use vim]', 'Edit specified file from the PC (vim or vscode is required)') - tab.line('scan', 'ls', ' (default: /)', 'List information about the file(s) on the Pyboard') + tab.line('edit', 'vim', ' []', 'Edit specified file from the PC (vim or vscode is required)') + tab.line('scan', 'ls', '[] (default: /)', 'List information about the file(s) on the Pyboard') tab.line('source', 'cat', '', 'Concatenate source code to standard output') tab.line('delete', 'rm', '', 'Delete file or directory contents on the Pyboard') tab.line('upload', 'put', '', 'Upload file or directory contents from the PC to the Pyboard') tab.line('download', 'get', '', 'Download file or directory contents from the Pyboard to the PC. Warning: this may cause file corruption.') tab.line('compare', 'diff', ' [use vim]', 'Compare source code from PC with source code from the Pyboard (vim or vscode is required)') tab.line('compile', 'mpy', '', 'Compile source file to mpy file') - tab.line('install', 'mip', '', 'Install a package lib') tab.line('status', 'mod', '', 'Show the working tree status (Git is required)') - tab.line('commit', 'sync', ' (default: "")', 'Synchronize Pyboard along with associated commit(s) (Git is required)') + tab.line('commit', 'sync', '[] (default: "")', 'Synchronize Pyboard along with associated commit(s) (Git is required)') case ['os' | 'uname']: picowatch.terminal('import os;print(os.uname().machine, os.uname().version)') case ['ls' | 'scan', *file]: