Skip to content

Instantly share code, notes, and snippets.

@FichteFoll
FichteFoll / find_scopes.py
Last active May 8, 2016 02:22 — forked from sparr/scopecount
Download color schemes and count the occuring atomic scopes
#!/usr/bin/env python3
import requests
import plistlib
from collections import Counter
import posixpath
from urllib.parse import urlsplit
import sys
import os
@FichteFoll
FichteFoll / open_recently_closed_file.py
Created May 10, 2012 15:27 — forked from jbjornson/open_recently_closed_file.py
Plugin that keeps track of which files have been recently closed, as well as files that have been recently accessed. The plugin can be used to simply open the last file you closed or can be used to display a quick panel with a list of recently accessed f
'''
@author Josh Bjornson
This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/
or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA.
'''
import sublime
import sublime_plugin
import os