ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

auto-save

by jamesfzhang ALL

Automatically saves the current file after every modification

Details

Installs

  • Total 197K
  • Win 137K
  • Mac 30K
  • Linux 30K
Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6 Mar 5 Mar 4 Mar 3 Mar 2 Mar 1 Feb 29 Feb 28 Feb 27 Feb 26 Feb 25 Feb 24 Feb 23 Feb 22 Feb 21 Feb 20 Feb 19 Feb 18 Feb 17 Feb 16 Feb 15 Feb 14 Feb 13 Feb 12 Feb 11 Feb 10 Feb 9 Feb 8 Feb 7 Feb 6 Feb 5 Feb 4 Feb 3
Windows 2 23 17 16 21 32 19 18 22 19 14 18 20 15 11 15 16 22 31 28 24 21 24 16 16 19 20 24 30 25 13 22 25 22 15 20 23 18 17 15 15 18 15 25 19 17
Mac 0 1 4 1 3 3 4 3 3 3 3 2 3 1 3 4 2 0 4 5 1 3 1 2 1 2 5 4 2 4 0 3 3 6 4 6 1 3 0 6 1 5 6 3 1 2
Linux 2 4 8 7 4 6 3 8 5 5 4 2 3 9 7 3 5 6 3 6 6 4 4 1 1 7 3 8 5 6 4 4 2 2 2 8 6 2 3 6 5 7 10 10 5 9

Readme

Source
raw.​githubusercontent.​com

auto-save

A Sublime Text plugin that automatically saves the current file after every modification.

Synopsis

In the occasion where you'd want Sublime Text to save the current file after each change, you can use this plugin.

Demo

Installation

From Package Control

auto-save is available through Sublime Package Control and is the recommended way to install.

From Github

Alternatively, you may install via GitHub by cloning this repository into the Packages directory under Sublime Text's data directory:

On Mac:

cd ~/Library/Application Support/Sublime Text 3/Packages
git clone https://github.com/jamesfzhang/auto-save.git

Usage

By default, auto-save is disabled because it is a fairly invasive plugin. To make it less invasive, you can instruct it to only auto-save changes to the file that is active when you turn on auto-save. In this mode, it will ignore changes to all other files.

To run auto-save whenever a file is modified, set "auto_save_on_modified": true in your user settings. To ignore certain files, set auto_save_ignore_files to a list of file suffices like [".yml", "package.json"].

You can also instruct it to auto-backup the file instead of auto-saving it. The backup gets created in the same directory as its source file. The backup file takes the same name as its source file, with the string .autosave inserted directly before the file extension. When auto-save is disabled, the backup file is deleted.

There are two ways to enable it. You can press Command + Shift + P to bring up the Command Palette, and search for AutoSave. Here, there are 3 options:

  • Toggle AutoSave: all files
  • Toggle AutoSave: current file only
  • Toggle AutoSave Backup: current file only

Alternatively, you can bind commands to turn the plugin on or off. For example, to toggle auto-save for all files, open “Preferences / Key Bindings - User” and add:

{ "keys": ["ctrl+shift+s"], "command": "auto_save" }

To toggle it for only the current file, and instruct to make a backup of the file instead of saving the file itself, you could add:

{ "keys": ["ctrl+shift+s"], "command": "auto_save", "args": {"all_files": false, "backup": true} }

This key bindings file takes an array of key bindings so please ensure that this key binding, along with any existing ones, are properly wrapped in [].

With this setting, pressing Ctrl + Shift + S will turn the plugin on or off. A status message will be displayed in the Sublime Status Bar each time the plugin is turned on or off.

By default, auto-save debounces “save” events by 1 second. For fast typers, this improves performance dramatically such that “save” events are not called constantly, just when it matters.

License

MIT-License.

Author

auto-save was created and maintained by James Zhang. Give him a shoutout at @jamesfzhang if you have comments or questions.