| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A vs-code:// URL handler for Visual Studio Code on three main platform (Windows, Mac, Ubuntu).
Following string must be specified as an editor in your app:
vs-code://open?url=file://%file&line=%lineMight not be stable right now. If something doesn't work, then feel free to submit an issue on GitHub.
The app doesn’t open? Don’t panic!
Install Laravel Tracy using composer command
composer require recca0120/laravel-tracyInclude the service provider within config/app.php
'providers' => [
//...
Recca0120\LaravelTracy\ServiceProvider::class,
//...
];Publish assets using artisan command
php artisan vendor:publish --provider="Recca0120\LaravelTracy\ServiceProvider"Setup your config/tracy.php like this
return [
//...
'editor' => 'vs-code://open?url=file://%file&line=%line',
//...
];| Back | FazBrowse Home | New Git URL |