This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- sublime_pep8.py Fri Feb 1 23:31:44 2013 | |
+++ sublime.py Fri Feb 1 23:25:56 2013 | |
@@ -15,21 +15,26 @@ | |
ENCODED_POSITION = 1 | |
TRANSIENT = 4 | |
FORCE_GROUP = 8 | |
+ | |
IGNORECASE = 2 | |
LITERAL = 1 | |
+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sublime_api | |
import sys | |
class _LogWriter: | |
def flush(self): | |
pass | |
def write(self, s): | |
sublime_api.log_message(s) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# Form implementation generated from reading ui file 'E:\Development\Python\PyQt tests\text editor\edytor.ui' | |
# | |
# Created: Mon Apr 29 16:12:17 2013 | |
# by: PyQt4 UI code generator 4.10.1 | |
# | |
# WARNING! All changes made in this file will be lost! | |
from PyQt4 import QtCore, QtGui |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This simple and "dirty" plugin highlights specified columns visually by | |
splitting the buffer into columns which can be colored according to `sections`. | |
To enable this "stripe highlighting" create a keymapping for the | |
"toggle_stripe_highlight" command. | |
http://www.sublimetext.com/forum/viewtopic.php?f=2&t=12111 | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# [PackageDev] target_format: plist, ext: tmTheme | |
author: Michael Sheets, modified by FichteFoll | |
name: Twilight-Fichte | |
uuid: 766026CB-703D-4610-B070-8DE07D967C5F | |
settings: | |
- settings: | |
background: '#141414' | |
caret: '#A7A7A7' | |
foreground: '#F8F8F8' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
- Namespace: _G.dlg | |
- Description: Provides functions with basic layouts for aegisub.dialog.display | |
- Constants: | |
MSG_OK = 0 | |
MSG_OKCANCEL = 1 | |
MSG_YESNO = 2 | |
MSG_YESNOALL = 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# [PackageDev] target_format: plist, ext: tmLanguage | |
comment: ExpressionEngine grammar for Sublime Text. Forked, overhauled and expanded | |
by fcgrx from imjared's module, which was forked from wes baker's fork of tim kelty's | |
original work. | |
name: ExpressionEngine | |
scopeName: text.html.ee | |
fileTypes: [html, htm, php, xhtml] | |
uuid: B47DFD28-B25E-4CC7-BFD4-1AEA1B84DA2F | |
patterns: | |
- include: '#embedded-code' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# [PackageDev] target_format: plist, ext: tmLanguage | |
name: AutoIt Script | |
scopeName: source.autoit | |
fileTypes: [au3] | |
uuid: E4862A3B-FBD6-342C-AB07-4EE2567CF68B | |
patterns: | |
- name: keyword.control.autoit | |
match: \b(?i:byref|case|const|continuecase|continueloop|default|dim|do|else|elseif|endfunc|endif|endselect|endswitch|endwith|enum|exit|exitloop|false|for|func|global|if|in|local|next|redim|return|select|step|switch|then|to|true|until|wend|while|with)\b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sublime_lib | |
# See https://github.com/SublimeText/AAAPackageDev/blob/master/Lib/sublime_lib/__init__.py | |
# Example usage: | |
# // ; before ) or } or " | |
# { "keys": [";"], "command": "batch", "args": { | |
# "commands": [ | |
# ["move", {"by": "characters", "forward": true}], | |
# ["insert", {"characters": ";"}] |