Last active
August 29, 2015 14:27
-
-
Save dansheffler/a494ae04125da42a4b8f to your computer and use it in GitHub Desktop.
A quick and dirty Sublime Text 3 plugin for opening my todo list with a keystroke
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, sublime_plugin | |
class openTodoCommand(sublime_plugin.TextCommand): | |
def run(self, edit): | |
path = "/Users/dansheffler/Dropbox/Tasks/todo.taskpaper" | |
self.view.window().open_file(path) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment