https://github.com/saneef/saveworkspacesonquit
Before quiting Sublime Text, save each open workspace states.
https://github.com/saneef/saveworkspacesonquit
sublime-text-3 sublime-text-plugin
Last synced: 10 months ago
JSON representation
Before quiting Sublime Text, save each open workspace states.
- Host: GitHub
- URL: https://github.com/saneef/saveworkspacesonquit
- Owner: saneef
- Created: 2018-12-07T19:27:20.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-05-27T21:54:02.000Z (about 5 years ago)
- Last Synced: 2025-01-24T18:46:02.296Z (over 1 year ago)
- Topics: sublime-text-3, sublime-text-plugin
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Save Workspaces on Quit
Keep loosing your workspace state on cmd + q? This plugins closes each open workspaces before Sublime Text quits.
The plugin save workspace on cmd + shift + w (close window) too.
## Installing
### Using Package Control
Through Command Palette choose **Package Control: Add Repository**, paste `https://github.com/saneef/SaveWorkspacesOnQuit.git` in the text field and press Enter.
Then, you can search for **"SaveWorkspacesOnQuit"**, in Package Control to install.
### Using Git
Clone this git repository into your [Packages Directory](http://sublimetext.info/docs/en/basic_concepts.html):
```bash
$ git clone https://github.com/saneef/SaveWorkspacesOnQuit.git
```
## On Linux or Windows
If are on Linux or Windows add this line to your key bindings and customize the `keys`
```json
[
{ "keys": ["super+q"], "command": "save_workspaces_on_quit" },
{ "keys": ["super+shift+w"], "command": "save_workspaces_on_window_close" }
]
```
## License
This project is released under [The MIT License](http://www.opensource.org/licenses/mit-license.php).