Fixed wording
This commit is contained in:
@@ -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', '!', '<file> (default: main.py)', 'Run a script from PC on the Pyboard and print out the results in raw-REPL mode')
|
||||
tab.line('run', '!!', '<file> (default: main.py)', 'Run a script on the Pyboard and print out the results in raw-REPL mode')
|
||||
tab.line('test', '!', '[<file>] (default: main.py)', 'Run a script from PC on the Pyboard and print out the results in raw-REPL mode')
|
||||
tab.line('run', '!!', '[<file>] (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', '<file> [use vim]', 'Edit specified file from the PC (vim or vscode is required)')
|
||||
tab.line('scan', 'ls', '<path> (default: /)', 'List information about the file(s) on the Pyboard')
|
||||
tab.line('edit', 'vim', '<file> [<use vim>]', 'Edit specified file from the PC (vim or vscode is required)')
|
||||
tab.line('scan', 'ls', '[<path>] (default: /)', 'List information about the file(s) on the Pyboard')
|
||||
tab.line('source', 'cat', '<file>', 'Concatenate source code to standard output')
|
||||
tab.line('delete', 'rm', '<path>', 'Delete file or directory contents on the Pyboard')
|
||||
tab.line('upload', 'put', '<path>', 'Upload file or directory contents from the PC to the Pyboard')
|
||||
tab.line('download', 'get', '<path>', 'Download file or directory contents from the Pyboard to the PC. Warning: this may cause file corruption.')
|
||||
tab.line('compare', 'diff', '<file> [use vim]', 'Compare source code from PC with source code from the Pyboard (vim or vscode is required)')
|
||||
tab.line('compile', 'mpy', '<python file>', 'Compile source file to mpy file')
|
||||
tab.line('install', 'mip', '<package name>', 'Install a package lib')
|
||||
tab.line('status', 'mod', '', 'Show the working tree status (Git is required)')
|
||||
tab.line('commit', 'sync', '<message> (default: "")', 'Synchronize Pyboard along with associated commit(s) (Git is required)')
|
||||
tab.line('commit', 'sync', '[<message>] (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]:
|
||||
|
||||
Reference in New Issue
Block a user