FileZilla SFTP Import
A Sublime Text 2 & 3 plugin that imports server entries from FileZilla to Sublime Text as a sftp-config.json file for use with the excellent Sublime SFTP plugin
Details
Installs
- Total 66K
- Win 44K
- Mac 15K
- Linux 7K
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 2 | 1 | 0 | 2 | 2 | 1 | 2 | 0 | 0 | 1 | 2 | 0 | 1 | 4 | 1 | 0 | 2 | 1 | 0 | 1 | 2 | 2 | 0 | 1 | 2 | 0 | 2 | 2 | 3 | 1 | 3 | 2 | 0 | 0 | 2 | 1 | 4 | 1 | 1 | 1 | 1 | 0 | 2 | 3 | 1 | 3 |
Mac | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 0 | 2 | 1 | 3 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 2 | 0 | 0 | 2 | 1 | 0 | 1 | 0 | 3 | 0 | 1 | 1 | 0 | 1 |
Linux | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
SublimeZilla
A Sublime Text 2 and 3 plugin that imports server entries from FileZilla to Sublime Text as a sftp-config.json file for use with the excellent Sublime SFTP plugin.
Installation
Using Package Control (preferred way):
Run Package Control: Install Package
command, find and install SublimeZilla
plugin.
Manual / Old School:
Clone or download git repository into your Packages folder.
Usage
You can run the plugin by using the Command Palette (
Ctrl+Alt+Z
, Windows/Linux |Cmd+Alt+Z
, OS X) type SublimeZilla orfz
and hit enter, or by going to Tools -> SublimeZilla.On the first run, you'll be asked to browse to your FileZilla XML file (sitemanager.xml) via the input panel (at the bottom of the screen) which is located by default as follows:
* Windows – `C:\Users\[USER_NAME]\AppData\Roaming\FileZilla\sitemanager.xml`
* OS X – `/Users/[USER_NAME]/.config/filezilla/sitemanager.xml`
* Linux – `/home/[USER_NAME]/.filezilla/sitemanager.xml`
A quick search will pop up with a list of all the servers contained in the FileZilla database. Select the one you want.
A new file will be opened called
sftp-config.json
. Save this file in the root of your project.You can now interact with this server via the SFTP plugin.
Alternate locations
Only 2 locations are supported at the moment. To save the first one follow steps 1 and 2 above.
A new file will have been created in /Packages/User/SublimeZilla.sublime-settings
and it will contain a path to the default FileZilla DB:
"filezilla_db_path": "C:\Users\[USER_NAME]\AppData\Roaming\FileZilla\sitemanager.xml"
To add another path you can add a "filezilla_db_path2"
setting with the secondary path as it's value.
Help
The plugin has been tested with Sublime Text 2 and 3, using FileZilla 3.7.4.1, on Windows 7, OS X 10.9.1 and Ubuntu Linux 13.10.
Please report bugs here so we can try and fix it.
Troubleshooting
FileZilla not found error
If the plugin has trouble accessing FileZilla try changing the default location to your sitemanager.xml
file.
To do this, create a new file called SublimeZilla.sublime-settings
in /Packages/User/
.
Add the following to this new file:
- For Windows:
{"filezilla_db_path": "C:\Users\[USER_NAME]\AppData\Roaming\FileZilla\sitemanager.xml"}
- For OSX:
{"filezilla_db_path" : "/Users/[OSX_USER]/.config/filezilla/sitemanager.xml"}
Thanks for trying it out!