在 ie Adobe Dreamweaver 中,可以设置将保存的文件自动复制到另一个项目特定位置。如何使用 Sublime Text 2 实现这一目标?
我在 Windows 7 上,我不想安装第三方工具(如 Windows 的 rsync)来查看文件夹,然后对更改采取措施。我只想将我的文件保存到两个位置(本地 SVN 存储库和第二个 Windows 远程共享文件夹)。
有没有一个插件可以做到这一点?
在 ie Adobe Dreamweaver 中,可以设置将保存的文件自动复制到另一个项目特定位置。如何使用 Sublime Text 2 实现这一目标?
我在 Windows 7 上,我不想安装第三方工具(如 Windows 的 rsync)来查看文件夹,然后对更改采取措施。我只想将我的文件保存到两个位置(本地 SVN 存储库和第二个 Windows 远程共享文件夹)。
有没有一个插件可以做到这一点?
现在有一个适合我需要的插件:SublimeFileSync
您可以查看自动备份插件。它不会在特定于项目的位置备份文件,但它是每次保存文件时自动保存备份的好方法。
https://github.com/akalongman/sublimetext-autobackups
配置选项:
{
// Don't make changes to this file directly as they can get wiped out when the
// plugin is updated. Instead transfer what you need to the 'Settings - User' file.
// The directory where we'll keep our backups. If empty, we'll try to put them in
// ~/sublime_backups
"backup_dir": "~/sublime_backups",
// If true, also save a backup copy any time a file is opened (if backup file not exists)
"backup_on_open_file": true,
// If true, backups saved per day, in separate folders, for example ~/sublime_backups/2013-05-23/myfile.php
"backup_per_day": true,
// If set, backups saved per second. possible values: false, "folder" or "file"
// false - disabled backup per second
// "folder" - backup example D:/Sublime Text Backups/2013-05-23/095034/myfile.php
// "file" - backup example D:/Sublime Text Backups/2013-05-23/myfile_095034.php
// to use this feature, you must have enabled backup_per_day setting
"backup_per_time": "file",
// Files larger than this many bytes won't be backed up.
"max_backup_file_size_bytes": 262144, // = 256 KB
// Files older than X days will be deleted. If 0 - auto delete disabled
"delete_old_backups": 0, // days to delete
// If true, backup file opened in same line as cursor in original file
"open_in_same_line": true,
// If true, show backup previews (only in ST3)
"show_previews": true
}