soaxelbrooke / auto-save

Automatically saves the current file after every modification

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

Image

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 enable it, you must first bind the command to turn the plugin on or off. Open "Preferences / Key Bindings - User" and add:

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

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.

About

Automatically saves the current file after every modification

License:MIT License


Languages

Language:Python 51.0%Language:JavaScript 49.0%