This is a work in progress. ... Markdown ref: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
Excellent ref:
Very complete: Sublime Text 2 Keyboard Shortcuts Cheat Sheet (Win, OS X and Linux):
| { | |
| "my_setting_comments": | |
| [ | |
| "json files CAN NOT have comments,they are stripped out", | |
| "TIP: use underscore like this to disable (with quotes) theme_: Phoenix Dark.sublime-theme", | |
| "Comment1", | |
| "Comment2" | |
| ], | |
This is a work in progress. ... Markdown ref: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
Excellent ref:
Very complete: Sublime Text 2 Keyboard Shortcuts Cheat Sheet (Win, OS X and Linux):
| import sublime | |
| import sublime_plugin | |
| ''' | |
| __ __ __ __ | |
| | \/ |_ _| \/ | | |
| | |\/| | '_| |\/| |_ | |
| |_| |_|_| |_| |_(_) | |
| Project: Examples of using custom dialog and messages in Sublime 2 |
| import sublime_plugin | |
| import datetime | |
| ''' | |
| __ __ __ __ | |
| | \/ |_ _| \/ | | |
| | |\/| | '_| |\/| |_ | |
| |_| |_|_| |_| |_(_) | |
| Project: Examples of using show_quick_panel in Sublime 2 |
A test link plugin for creating and editing Gists.
Do not use triple-quote strings to comment code. This is not a good practice, becaus https://python-guide.readthedocs.org/en/latest/writing/documentation/#project-documentation
###Line wrapping, comment
#The Joy of Coding a Simple Plugin
Rob Smith on August 30, 2013 with 48 Commments
Tutorial Details
Program: Some programm
Version: 2.0
Difficulty: Beginner
Estimated Completion Time: 45 minutes
Excerpted from “A short-cut to Hollywood Success” by Linda Cowgill Creative Screenwriting 05/11/2004)
| import sublime | |
| import sublime_plugin | |
| import os | |
| # run this with at the Python console with: | |
| # view.run_command("message_dialog") | |
| class MessageDialogCommand(sublime_plugin.TextCommand): |
| import sublime | |
| import sublime_plugin | |
| # did it work | |
| # run this with at the Python console with: | |
| # view.run_command("status_message") | |
| # filename: tp_status_message.py | |
| class StatusMessageCommand(sublime_plugin.TextCommand): |