This file contains 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
#!/usr/bin/env python | |
#coding: utf8 | |
#################################### IMPORTS ################################### | |
# Std Libs | |
import os | |
import sys | |
import re | |
import subprocess |
This file contains 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
#!/usr/bin/env python | |
#coding: utf8 | |
#################################### IMPORTS ################################### | |
# Std Libs | |
import re | |
from re import sre_parse, sre_compile | |
from itertools import izip, islice |
This file contains 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
#!/usr/bin/env python | |
#coding: utf8 | |
#################################### IMPORTS ################################### | |
# Std Libs | |
import os | |
class Boost(object): | |
pass |
This file contains 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: utf8 | |
#################################### IMPORTS ################################### | |
# Sublime Libs | |
import sublime | |
import sublime_plugin | |
################################################################################ | |
class ReverseSelectionDirections(sublime_plugin.TextCommand): |
This file contains 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
#!python | |
from __future__ import with_statement | |
import glob | |
import os.path | |
import shutil | |
import zipfile | |
def isFileEntry(s): |
This file contains 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
#!/usr/bin/env python | |
#coding: utf8 | |
#################################### IMPORTS ################################### | |
# Std Libs | |
import cgi | |
import os | |
import pprint | |
import string | |
import time |
This file contains 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
commands = {u'auto_complete': {}, | |
u'build': {}, | |
u'clear_bookmarks': {u'name': set([u'mark'])}, | |
u'clear_fields': {}, | |
u'clear_recent_files': {}, | |
u'clear_recent_projects': {}, | |
u'close': {}, | |
u'close_all': {}, | |
u'close_file': {}, | |
u'close_folder_list': {}, |
This file contains 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: utf8 | |
#################################### IMPORTS ################################### | |
# Std Libs | |
import threading | |
import time | |
import sys | |
# Sublime | |
import sublime |
This file contains 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 | |
import sublime_plugin | |
import textwrap | |
def get_tab_size(view): | |
return int(view.settings().get('tab_size', 8)) | |
def handle_tabs(view, string, offset=0): | |
if not view.settings().get('translateTabsToSpaces'): | |
tab_size = view.settings().get('tab_size', 8) |
This file contains 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: utf8 | |
#################################### IMPORTS ################################### | |
# Sublime Libs | |
import sublime | |
import sublime_plugin | |
import bisect | |
################################### BINDINGS ################################### | |
[ |
OlderNewer