Reputation: 151
I installed sublime text 3 editor and package control on my computer, but many of the packages only work on sublime text 2. However, I read articles on how branching to st3 could be a work around. But, I have no idea what that means, how can one branch to st3?
Upvotes: 10
Views: 51164
Reputation: 117
Its better to use the packages which are fully supported in your Sublime Text 3 version.
You can browse packages easily from: https://packagecontrol.io as well as see their compatibility.
Another method can be simply go to to your Sublime Text 3 > Install packages & Install the package you need. Here; you only see the packages supported in your Sublime Text 3 version.
Hope it helps...
Upvotes: 0
Reputation: 1889
Please follow the instructions at: https://packagecontrol.io/installation
Upvotes: 15
Reputation: 36
Manual Installation
If for some reason the console installation instructions do not work for you (such as having a proxy on your network), perform the following steps to manually install Package Control:
Upvotes: 0
Reputation: 103
Sublime tries to write some config files to your .conf directory located in /home/{username}/.config/sublime-text-3/Installed Packages but it hasn't writing permission.
So try:
chmod -R 777 /home/{username}/.config/sublime-text-3/Installed Packages
Open the console and try to paste to code for sublime text 3.
Upvotes: 0
Reputation: 763
If you want to use a Sublime 2 Package on Sublime 3, you can install the Package Manager as described here.
Then CTRL+ALT+P
> Package Control: Add Repository
> Paste the GitHub (or repository) URL > Install the package normally.
This doesn't guarantee the package will work, so you must check if there's a branch or something which is compatible with Sublime 3. I did that with freewizard/SublimeFormatSQL since one of the commits said 'Added Sublime Text 3 support', and it worked.
Upvotes: 2
Reputation: 19744
Do you mean in Package Control or for other packages? For Package Control, you need to manually clone the git repo. Then do git checkout python3
. For installing packages, you need to add the branch URLs as an external repository. For example, one of my plugins that I have a ST3 branch on is AdvancedNewFile. To install the ST3 branch, I would have do the following.
The URL can be found by clicking the Branch dropdown on github and selecting the appropriate branch.
Upvotes: 4