ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Todo Manager

by tanepiper ST2

A simple ToDo list manager

Details

Installs

  • Total 9K
  • Win 4K
  • Mac 3K
  • Linux 2K
Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6 Mar 5 Mar 4 Mar 3 Mar 2 Mar 1 Feb 29 Feb 28 Feb 27 Feb 26 Feb 25 Feb 24 Feb 23 Feb 22 Feb 21 Feb 20 Feb 19 Feb 18 Feb 17 Feb 16 Feb 15 Feb 14
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Sublime Text 2 Todo Manager

Is available via the package manager for install. Please note that SublimeTODO (https://github.com/robcowie/SublimeTODO) is a different package and provides different functionality (so they won't clash).

Commands available through the command palate are:

  • Todo: Add/Add at Line/Add at Function
  • Todo: List All/Active/Done
  • Todo: Open file
  • Todo: Purge

All have keybindings for Windows, Mac and Linux (untested) and the add functions also now include context menu items so you can quickly add at the current location with the right click of a mouse. Windows and Linux commands are done with Ctrl+Alt+t followed by Ctrl+Alt+<letter>. On the Mac commands are ⌘+Ctrl+t followed by ⌘+Ctrl+<letter>.

All commands act up on the todo file for the current active tab in Sublime Text 2 and cannot be used on files that are closed or being previewed.

Adding a todo

Adding a todo is done in one simple way, but provides two convenience functions to speed up input. The first way is to just add a todo (Ctrl+Alt+t, Ctrl+Alt+a) - this takes you through the following steps

  1. Select a piority from A-D, or none
  2. Enter the task text
  3. Enter the line number ~ of the todo
  4. Enter the function name & of the todo
  5. Enter any projects entries + as space seperated entries
  6. Enter any contexts entries @ as space seperated entries

The line will then be appended to the bottom of the list. The two additional functions are Add-at-line (Ctrl+Alt+t,Ctrl+Alt+s) and Add-at-function (Ctrl+Alt+t,Ctrl+Alt+f) which autofill the lines or function box depending on which is selected. The function name is always the block of code you are in.

Viewing and filtering todos

Viewing todos is done with the following commands:

  • List All (Ctrl+Alt+t,Ctrl+Alt+j)
  • List Active (Ctrl+Alt+T,Ctrl+Alt+l)
  • List Done (Ctrl+Alt+t,Ctrl+Alt+k) commands.

When you view a list, you can navigate up and down the items. Pressing enter on any item will present the item menu, with the following options

  • Toggle done status - Change the todo display from active to done, or vice-versa
  • Edit - Edit the todo in raw mode, a text box with the full todo item
  • Move - Move the item up or down the list, you will be presented with Up or Down options
  • Delete - Delete the item from the list, you will be asked to confirm this

To filter items, when you have a list open the command palate allows further keypresses. For example if you have the line:

* (A) Finish off refactoring ~45 +MyProject @refactor @release

If you wanted to find this item by it's line number you would type ~45 and the list will be filtered to display only this item, or all items with a ~45 next to them.

Purge done items and opening files

Purging done items (Ctrl+Alt+t,Ctrl+Alt+p) removes all done items from the todo file. You will be asked before you want to do this.

Opening the file (Ctrl+Alt+t,Ctrl+Alt+o) opens the file as a plain text file to be edited in Sublime Text 2

File location

In the settings file, you can change the todo_home option, currently set to none. This is the location you wish to save the files - it might be somewhere like a dropbox folder.

The default folder is $HOME/.todomanager

Files are kept in the name format 'todo-.txt' base on the current active file - this means you have a todo per file. If you want the contents of the todo file, it's best to just open it via the command.

Future features

  • UI for changing priority
  • Search over todo file contents
  • List all todo files
  • Provide way to mark source with todo information
  • Support for start/end dates in todos, with filtering