Skip to content

Instantly share code, notes, and snippets.

@dansheffler
Last active August 29, 2015 14:27
Show Gist options
  • Save dansheffler/a494ae04125da42a4b8f to your computer and use it in GitHub Desktop.
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
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