Skip to content

Instantly share code, notes, and snippets.

@lol97
Created May 2, 2021 18:57
Show Gist options
  • Select an option

  • Save lol97/2290bbc8f4a54cee7361864b18c09dbb to your computer and use it in GitHub Desktop.

Select an option

Save lol97/2290bbc8f4a54cee7361864b18c09dbb to your computer and use it in GitHub Desktop.
Sublime Text + Pascal
{
"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