Difference between revisions of "VMS IDE Commands"
(Created page with "To invoke the commands, press <code>F1</code> in the Visual Studio Code editor and start typing the command. 800px|thumb|none|VMS IDE Commands =...") |
|||
(13 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
To invoke the commands, press <code>F1</code> in the Visual Studio Code editor and start typing the command. | To invoke the commands, press <code>F1</code> in the Visual Studio Code editor and start typing the command. | ||
− | [[File: | + | [[File:List_of_commands.png|800px|thumb|none|VMS IDE Commands]] |
=Commands= | =Commands= | ||
− | * <code>'''VMS-IDE: | + | * <code>'''VMS-IDE: Build on VMS'''</code> - Build project on OpenVMS with its dependencies |
− | * <code>'''VMS-IDE: | + | * <code>'''VMS-IDE: Build project'''</code> - Build the selected project on OpenVMS (`Ctrl+Alt+F7`) |
− | * <code>'''VMS-IDE: | + | * <code>'''VMS-IDE: Change CR/LF for all source files'''</code> - Change CR/LF to LF for all source files |
− | * <code>'''VMS-IDE: | + | * <code>'''VMS-IDE: Clean this project'''</code> - Clean the project, delete files from output folder |
− | * <code>'''VMS-IDE: Create MMS'''</code> - Create default MMS | + | * <code>'''VMS-IDE: Create/Update MMS'''</code> - Create default MMS |
− | * <code>'''VMS-IDE: | + | * <code>'''VMS-IDE: Download system headers'''</code> - Download system headers from VMS |
− | * <code>'''VMS-IDE: | + | * <code>'''VMS-IDE: Edit VMS project settings'''</code> - Edit project settings |
− | * <code>'''VMS-IDE: | + | * <code>'''VMS-IDE: Edit ssh-helper settings'''</code> - Edit SSH connection settings |
− | * <code>'''VMS-IDE: | + | * <code>'''VMS-IDE: Force built status'''</code> - Force built status |
* <code>'''VMS-IDE: Force synchronized status'''</code> - Force synchronized status | * <code>'''VMS-IDE: Force synchronized status'''</code> - Force synchronized status | ||
− | * <code>'''VMS-IDE: | + | * <code>'''VMS-IDE: Prepare to debug'''</code> - Prepare project for debugging |
− | * <code>'''VMS-IDE: Upload | + | * <code>'''VMS-IDE: Quick upload'''</code> - Execute quick uploading |
− | * <code>'''VMS-IDE: | + | * <code>'''VMS-IDE: Rebuild on VMS'''</code> - Rebuild project on OpenVMS with its dependencies |
+ | * <code>'''VMS-IDE: Rebuild project'''</code> - Rebuild the selected project on OpenVMS | ||
+ | * <code>'''VMS-IDE: Reparse Basic project'''</code> - Reparse Basic project | ||
+ | * <code>'''VMS-IDE: Reparse Fortran project'''</code> - Reparse Fortran project | ||
+ | * <code>'''VMS-IDE: Reparse Pascal project'''</code> - Reparse Pascal project | ||
+ | * <code>'''VMS-IDE: Synchronize project files with VMS'''</code> - Synchronize project files with VMS | ||
+ | * <code>'''VMS-IDE: Terminal'''</code> - Open VMS terminal (`Ctrl+F6`) | ||
+ | * <code>'''VMS-IDE: Upload files via Zip'''</code> - Upload project files using Zip | ||
+ | * <code>'''VMS-IDE: Upload files'''</code> - Upload project files | ||
+ | |||
+ | =Task= | ||
+ | Also, it is possible to run command through VS Code Tasks. | ||
+ | |||
+ | <pre> | ||
+ | { | ||
+ | "label": "Upload", | ||
+ | "type": "task2cmd", | ||
+ | "command": "vmssoftware.synchronizer.upload", | ||
+ | } | ||
+ | </pre> | ||
+ | |||
+ | * <code>'''label'''</code> unique label of command | ||
+ | * <code>'''type'''</code> type of command, must be ''task2cmd'' | ||
+ | * <code>'''command'''</code> the name of command, can be given from Contribution page of extension description. | ||
+ | [[Category:VMS IDE]] |
Latest revision as of 06:35, 20 April 2021
To invoke the commands, press F1
in the Visual Studio Code editor and start typing the command.
Commands
VMS-IDE: Build on VMS
- Build project on OpenVMS with its dependenciesVMS-IDE: Build project
- Build the selected project on OpenVMS (`Ctrl+Alt+F7`)VMS-IDE: Change CR/LF for all source files
- Change CR/LF to LF for all source filesVMS-IDE: Clean this project
- Clean the project, delete files from output folderVMS-IDE: Create/Update MMS
- Create default MMSVMS-IDE: Download system headers
- Download system headers from VMSVMS-IDE: Edit VMS project settings
- Edit project settingsVMS-IDE: Edit ssh-helper settings
- Edit SSH connection settingsVMS-IDE: Force built status
- Force built statusVMS-IDE: Force synchronized status
- Force synchronized statusVMS-IDE: Prepare to debug
- Prepare project for debuggingVMS-IDE: Quick upload
- Execute quick uploadingVMS-IDE: Rebuild on VMS
- Rebuild project on OpenVMS with its dependenciesVMS-IDE: Rebuild project
- Rebuild the selected project on OpenVMSVMS-IDE: Reparse Basic project
- Reparse Basic projectVMS-IDE: Reparse Fortran project
- Reparse Fortran projectVMS-IDE: Reparse Pascal project
- Reparse Pascal projectVMS-IDE: Synchronize project files with VMS
- Synchronize project files with VMSVMS-IDE: Terminal
- Open VMS terminal (`Ctrl+F6`)VMS-IDE: Upload files via Zip
- Upload project files using ZipVMS-IDE: Upload files
- Upload project files
Task
Also, it is possible to run command through VS Code Tasks.
{ "label": "Upload", "type": "task2cmd", "command": "vmssoftware.synchronizer.upload", }
label
unique label of commandtype
type of command, must be task2cmdcommand
the name of command, can be given from Contribution page of extension description.