VMS IDE Commands

From VSI OpenVMS Wiki
Jump to navigation Jump to search

To invoke the commands, press F1 in the Visual Studio Code editor and start typing the command.

VMS IDE Commands

Commands

  • VMS-IDE: Build on VMS - Build project on OpenVMS with its dependencies
  • VMS-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 files
  • VMS-IDE: Clean this project - Clean the project, delete files from output folder
  • VMS-IDE: Create/Update MMS - Create default MMS
  • VMS-IDE: Download system headers - Download system headers from VMS
  • VMS-IDE: Edit VMS project settings - Edit project settings
  • VMS-IDE: Edit ssh-helper settings - Edit SSH connection settings
  • VMS-IDE: Force built status - Force built status
  • VMS-IDE: Force synchronized status - Force synchronized status
  • VMS-IDE: Prepare to debug - Prepare project for debugging
  • VMS-IDE: Quick upload - Execute quick uploading
  • VMS-IDE: Rebuild on VMS - Rebuild project on OpenVMS with its dependencies
  • VMS-IDE: Rebuild project - Rebuild the selected project on OpenVMS
  • VMS-IDE: Reparse Basic project - Reparse Basic project
  • VMS-IDE: Reparse Fortran project - Reparse Fortran project
  • VMS-IDE: Reparse Pascal project - Reparse Pascal project
  • VMS-IDE: Synchronize project files with VMS - Synchronize project files with VMS
  • VMS-IDE: Terminal - Open VMS terminal (`Ctrl+F6`)
  • VMS-IDE: Upload files via Zip - Upload project files using Zip
  • VMS-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 command
  • type type of command, must be task2cmd
  • command the name of command, can be given from Contribution page of extension description.