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

  • 0.1.3
  • github.​com
  • github.​com
  • 12 years ago
  • 19 minutes ago
  • 12 years ago

Installs

  • Total 1K
  • Win 434
  • Mac 596
  • Linux 196
Mar 23 Mar 22 Mar 21 Mar 20 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 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
Windows 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 2 0 0 0 0 0
Mac 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 0 0 0 0 0 1 0 1 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 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” }