Created
January 21, 2021 06:28
-
-
Save wpupru/6da83adf2833107588d0a8c242c58e7b to your computer and use it in GitHub Desktop.
Настройка выполнения файлов в sublime text
This file contains 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
Menu -> Tools -> Build System -> Build New System | |
Browser Run.sublime-build | |
Z:\Google\Chrome\App\Chrome-bin\chrome.exe | |
{ | |
"cmd": ["Z:\\Google\\Chrome\\App\\Chrome-bin\\chrome.exe", "$file"] | |
} | |
Dart Run.sublime-build | |
C:\Program Files\Dart\dart-sdk\bin\dart.exe | |
{ | |
"cmd": ["C:\\Program Files\\Dart\\dart-sdk\\bin\\dart.exe", "$file"] | |
} | |
PHP Run.sublime-build | |
D:\OSPanel\modules\php\PHP_7.3\php.exe | |
{ | |
"cmd": ["D:\\OSPanel\\modules\\php\\PHP_7.3\\php.exe", "$file"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment