Sublime TextにFTP機能を追加
Sublime TextにSFTPプラグインを導入してFTP機能を追加します.
SFTPのインストール
command+shift+P(Macの場合 windowsは多分control+shift+P)を押すと,このような画面が出ます.
ここにinstallと入力してPackage Control: Install Package
を選択してください.
さらにSFTPと入力してSFTPを選択し,Package Control Messagesというファイルが開けばインストール完了です.
接続設定
プロジェクトの作成
ローカルに,サーバからダウンロードしたファイルを保存するためのフォルダを作成します.
作成したフォルダをSublime Textにドラッグ&ドロップするとサイドバーにフォルダが表示されます.
設定ファイルの編集
フォルダ名を右クリックし,SFTP > Map to Remote...を選択すると,sftp-config.jsonが開きます.
大体はデフォルトのままでいいです.ホスト名,ユーザー名,パスワード,アップロード先のパスは任意の設定に変更してください.
パスは必ずルートディレクトリからの絶対パスを指定してください.パスワードを指定しておくと,1回目の接続以降はパスワードの入力が不要となります.
{
// The tab key will cycle through the settings when first created
// Visit http://wbond.net/sublime_packages/sftp/settings for help
// sftp, ftp or ftps
"type": "sftp",
"save_before_upload": true,
"upload_on_save": false,
"sync_down_on_open": false,
"sync_skip_deletes": false,
"sync_same_age": true,
"confirm_downloads": false,
"confirm_sync": true,
"confirm_overwrite_newer": false,
"host": "hostname",
"user": "username",
"password": "password",
//"port": "22",
"remote_path": "サーバのアップロード先のパス",
"ignore_regexes": [
"\\.sublime-(project|workspace)", "sftp-config(-alt\\d?)?\\.json",
"sftp-settings\\.json", "/venv/", "\\.svn/", "\\.hg/", "\\.git/",
"\\.bzr", "_darcs", "CVS", "\\.DS_Store", "Thumbs\\.db", "desktop\\.ini"
],
//"file_permissions": "664",
//"dir_permissions": "775",
//"extra_list_connections": 0,
"connect_timeout": 30,
//"keepalive": 120,
//"ftp_passive_mode": true,
//"ftp_obey_passive_host": false,
//"ssh_key_file": "~/.ssh/id_rsa",
//"sftp_flags": ["-F", "/path/to/ssh_config"],
//"preserve_modification_times": false,
//"remote_time_offset_in_hours": 0,
//"remote_encoding": "utf-8",
//"remote_locale": "C",
//"allow_config_upload": false,
}
ダウンロード・アップロードする際はフォルダ名を右クリックし,Upload FolderまたはDownload Folderを選択します.
ショートカットもありますが,ここでは割愛します.
参考
[SublimeText 3] SFTPでページ更新が劇的に変わる!
https://creatorhyp.com/tips/sublimetext-3-sftp/
Author And Source
この問題について(Sublime TextにFTP機能を追加), 我々は、より多くの情報をここで見つけました https://qiita.com/ppathe7/items/982cb38eab2d01332647著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .