The popular open-source contract for web professionals by Stuff & Nonsense
- Originally published: 23rd December 2008
- Revised date: March 15th 2016
- Original post
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>author</key> | |
| <string>Jackson Gariety</string> | |
| <key>name</key> | |
| <string>Toy Chest</string> | |
| <key>semanticClass</key> | |
| <string>theme.dark.toy-chest</string> |
| { | |
| "color_scheme": "Packages/toychest.tmTheme", | |
| "draw_white_space": "all", | |
| "extensions": | |
| [ | |
| "mdown", | |
| "txt", | |
| "md", | |
| "markdown" | |
| ], |
| /* | |
| This document has been created with Marked.app <http://markedapp.com>, Copyright 2011 Brett Terpstra | |
| Please leave this notice in place, along with any additional credits below. | |
| --------------------------------------------------------------- | |
| Title: Highlighter | |
| Author: Gordon Brander http://gordonbrander.com | |
| Description: Minimal theme with careful typographic scale and highlighed bold. | |
| Tweaks by Craig | |
| */ | |
| /* http://retinart.net/typography/typographicscale/ */ |
| { | |
| "host": "SERVER", | |
| "port": 21, | |
| "username": "USERNAME", | |
| "password": "PASSWORD", | |
| "path": "../", | |
| "secure": false | |
| } |
| # 1. Make a folder under your Data/Packages folder, call it "Straight Quotes" | |
| # 2. Create a file in there called "Straight Quotes.py" and paste in the following: | |
| # 3. Create another file in there called "Main.sublime-menu" (see that filename) | |
| # http://www.sublimetext.com/forum/viewtopic.php?f=3&t=14451 | |
| import sublime, sublime_plugin | |
| class StraightQuotesCommand(sublime_plugin.TextCommand): | |
| def run(self, edit): | |
| for rgn in self.view.find_all("[“”]"): |
| { | |
| "close_windows_when_empty": true, | |
| "color_scheme": "Packages/Theme - Spacegray/base16-eighties.dark.tmTheme", | |
| "detect_slow_plugins": false, | |
| "default_encoding": "UTF-8", | |
| "file_exclude_patterns": | |
| [ | |
| ".DS_Store", | |
| "*.lib", | |
| "*.log" |
| // Original by C0D312 | |
| // I added the single quote and curly brace to the regex. | |
| // http://www.sublimetext.com/forum/viewtopic.php?f=3&t=5174 | |
| // | |
| // Add the following to your user keybindings: | |
| [ | |
| { "keys": ["tab"], "command": "move", "args": {"by": "characters", "forward": true}, "context": | |
| [ | |
| { "key": "following_text", "operator": "regex_contains", "operand": "^[)}'\"\\]]", "match_all": true }, |
| <ul> | |
| <li><a href="/" {% if mixture.url == "index" %}class="selected"{% endif %}>Home</a></li> | |
| <li><a href="/about" {% if mixture.url == "about" %}class="selected"{% endif %}>About</a></li> | |
| <li><a href="/contact" {% if mixture.url == "contact" %}class="selected"{% endif %}>Contact</a></li> | |
| </ul> |