Serves as the package_control_channel but hosts a complete channel generated by the channelmanager for the AmxxSimpleIde.
These files are automatically generated by the Channel Manager
. So any modification to these files
will be overridden when the Channel Manager
generates a new version of these files based on the
AmxxSimpleIde .gitmodules
file. Any new
information required to be used here need to be parsed from the .gitmodules
by the Sublime Channel Manager
.
After installing this, you need to run its installer if you want to install the channel packages, or the uninstaller, if you want to uninstall everything, after or before installing the channel packages.
You can find they on the menu Preferences -> Packages Settings -> Amxx Channel -> Run Stable Installation
or the Run Uninstallation
if want to uninstall it.
- Download & Install
Sublime Text 3
(https://www.sublimetext.com/3) - Go to the menu
Tools -> Install Package Control
, then, wait few seconds until the installation finishes up - Now,
Go to the menu
Preferences -> Package Control
- Type
Add Channel
on the opened quick panel and press Enter - Then,
input the following address and press Enter
https://raw.githubusercontent.com/evandrocoan/StudioChannel/master/channel.json
- Go to the menu
Tools -> Command Palette... (Ctrl+Shift+P)
- Type
Preferences: Package Control Settings – User
on the opened quick panel and press Enter - Then,
find the following setting on your
Package Control.sublime-settings
file:"channels": [ "https://packagecontrol.io/channel_v3.json", "https://raw.githubusercontent.com/evandrocoan/StudioChannel/master/channel.json", ],
- And,
change it to the following, i.e.,
put the
https://raw.githubusercontent...
line as first:"channels": [ "https://raw.githubusercontent.com/evandrocoan/StudioChannel/master/channel.json", "https://packagecontrol.io/channel_v3.json", ],
- The
https://raw.githubusercontent...
line must to be added before thehttps://packagecontrol.io...
one, otherwise, you will not install this forked version of the package, but the original available on the Package Control default channelhttps://packagecontrol.io...
- The
- Now,
go to the menu
Preferences -> Package Control
- Type
Install Package
on the opened quick panel and press Enter - Then,
search for
AmxxChannel
and press Enter
See also:
- ITE - Integrated Toolset Environment
- Package control docs for details.
This package responsible to install the channel packages, by installing the PackagesManager
and
uninstalling Package Control
, then installing the Channel Manager
and calling it to install the
Channel packages.
Also, will be responsible by the removal of AmxxSimpleIde
, by calling the Channel Manager
uninstaller, then installing back Package Control
and removing PackagesManager
.
Related threads:
- https://packagecontrol.io/docs#Package_Developers DOCS - End Users
- Forum$29121 How to create the channel_v3.json from the repository package_control_channel?