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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
mQINBF+02qUBEADWgk1oOAA7O7/e7Pqxssnu5y7JzbL3x70wXHrJx31K99ar6Mqe | |
vjS1HV6mcoERxkDunFAjL3hpgCcTWwbV1XCLsS5j4LEV5DFs1wOJYHPYVIX783pE | |
7PbEIbH51897aq9A0PQsELB9E0a12xJxHzinphXEqofuEL6pE0Z8ssDnnn678dUX | |
/LqRcIjnZb7SQe6pjGPxV7BFhnmLQrf6+z2fxTN1cxZeL1ihRpu9a5lZuEmeO0xl | |
P8riB9jf3imwSU1ff14tkkhgrD08Nfg2f/xiRE51onzJxKEC94MRxPC4api07QXh | |
jjyPSo+kmXymwf73HQ8Burr1baGT61P6SbD2sYYJ/06DbuuZlCwmBXnXWlAj712h | |
rTnbx9OyLndhVfdvpU3t7cUa/VJtrY9StkpqDjswQn+/9f3T+Hyun6t9NucYw2m4 | |
CkqMrhCSVXGAaKlQxqpAcDqMv8D/e6Oi+58OdBCfeJiFHWsPSMFleI/0I6bJ3MyE |
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
### Keybase proof | |
I hereby claim: | |
* I am sublimator on github. | |
* I am niq (https://keybase.io/niq) on keybase. | |
* I have a public key ASBKIy6KWPToh2eejUOL4cWCvbj43ubaOjUbgdE_ZKmifwo | |
To claim this, I am signing this object: |
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
{ | |
"LAYOUTS": "----------------------", | |
"layouts": [ | |
"tall", | |
"wide", | |
"fullscreen", | |
"column" | |
], | |
"MODIFIERS": "----------------------", |
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
{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 os | |
import inspect | |
import functools | |
import re | |
import types |
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 ################################### | |
[ |
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 ################################### | |
[ |
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 ################################### | |
# 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
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': {}, |
NewerOlder