SublimeText 3 - Package Management: Remote Directory for a Lost ColdFusion Package

I am running SublimeText 3 (build 3083). I follow the installation instructions for the ColdFusion plugin as described here ( https://github.com/SublimeText/ColdFusion ):

Download manually

  • Download files using the download option GitHub.zip
  • Unzip the files and rename the folder in ColdFusion
  • Copy the folder to the Sublime Text 2 Packages directory

This worked (and still works) on many machines. But today I have a computer that every time I open SublimeText again, it deletes the ColdFusion directory, and the SublimeText console says: “Package management: remote directory for the lost ColdFusion package”. Nothing could be found at the moment. Help evaluate. Thanks!

+5
source share
2 answers

The "Manual Download" section is for Sublime Text 2 only. At the very top of README, you are associated with ST3 instructions :

The development branch contains rewriting of the ColdFusion plugin. The only installation method is through Git.

cd Packages/ git clone https://github.com/SublimeText/ColdFusion.git cd ColdFusion git checkout development 

On Windows computers, the Packages folder is located in %APPDATA%\Sublime Text 3\Packages . You will need a working copy of git on your computer, which can be obtained here .

Alternatively, you can download the zip file to the development branch , extract it, rename the resulting ColdFusion-development folder to ColdFusion , then copy it to the Packages folder.


EDIT

I dug a little, and apparently this package is no longer being developed. However, the CFML package was proposed as a replacement. Not being a ColdFusion user, I have not tested it myself, but reviews from others are good. It is only available for ST3, but can be installed directly through the Control Package, so you don’t have to worry about using Git.

+7
source

If you are using Sublime Text 3 ST3 , the recommended package to use is the one called CFML , available through Package Control here: https://packagecontrol.io/packages/CFML

If you are using Sublime Text 2 ST2 , the recommended package is a number called Cold​Fusion , available through Package Control here: https://packagecontrol.io/packages/ColdFusion

For them, you will find installation instructions using Package Control or manually from GitHub .

0
source

All Articles