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

Scratch

by jschonberg ALL

Sublime Text 2/3 Plugin – A simple way to create scratch files for code snippets and notes. All files are automatically named and saved in the same location.

Details

Installs

  • Total 1K
  • Win 411
  • Mac 570
  • Linux 183
Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Scratch

Overview

Scratch is a simple Sublime Text plugin that makes it easy to create scratch files for code snippets and notes. These files are saved in single location for easy searching and access later.

Usage

Basic Usage

  1. In Sublime Text Go to File > New Scratch File
  2. A new file is opened. The file is named “number.extension”. number is an integer that is set to one more than the last saved Scratch file name. extension is a user-configurable extension.

Example

File > New Scratch File to open “0.py”. Save the file.
File > New Scratch File to open “1.py”.

Changing File Extensions Quickly

To quickly change the extension of a Scratch file:

  1. Set the first line of the file to contain only the new extension you want to switch to.
  2. Save the file
  3. The file now has the the new extension

Example

File > New Scratch File to open “0.py”.
Type “.js” as the only text in the first line.
Save the file.
The file is now named “0.js”

Configuration

By default Scratch will save files to ~/Documents/Scratch with the extension .py. You can change these settings using the following flags in your package settings: “ { "save_path”: “~/Documents/Scratch”, “extension” : “.py” }