Created
May 2, 2021 18:57
-
-
Save lol97/2290bbc8f4a54cee7361864b18c09dbb to your computer and use it in GitHub Desktop.
Sublime Text + Pascal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "shell": true, | |
| "cmd": ["fpc", "${file_path}/${file_base_name}", "&&", "start", "cmd", "/c", "$file_base_name.exe", "&", "pause"], | |
| "selector": "source.pascal", | |
| "variants": [ | |
| { | |
| "cmd": ["start", "cmd", "/c", "$file_base_name.exe & pause"], | |
| "name": "Run", | |
| "shell": true | |
| }, | |
| { | |
| "cmd": ["fpc", "${file_path}/${file_base_name}"], | |
| "name": "Compile", | |
| "shell": true | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment