Review Myself
An in-source todo management plugin for Subline Text 3, lists todos in your sources, helps you know what should do next.
Details
Installs
- Total 1K
- Win 688
- Mac 381
- Linux 225
Apr 26 | Apr 25 | Apr 24 | Apr 23 | Apr 22 | Apr 21 | Apr 20 | Apr 19 | Apr 18 | Apr 17 | Apr 16 | Apr 15 | Apr 14 | Apr 13 | Apr 12 | Apr 11 | Apr 10 | Apr 9 | Apr 8 | Apr 7 | Apr 6 | Apr 5 | Apr 4 | Apr 3 | Apr 2 | Apr 1 | Mar 31 | Mar 30 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 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
Introduction
An in-source todo manage plugin for Subline Text 3, list todos in your sources, help you always know what should do next.
Screenshots
What's new in Review Myself v2 ?
- Change all key map, more convenient.
- Context panel
- Editing right in context panel
Setup
By default, Review Myself has this default settings:
{
"todo_patterns": [
"TODO\\s*:+\\s*(?P<todo>.*)$"
],
"priority_patterns": [
"#p(?P<priority>[1-3])"
],
"is_ignore_case": true,
"ignored_dir_patterns": [".svn", ".git", ".hg", "CVS"],
"only_care_file_patterns": ["*.cpp", "*.c", "*.h", "*.py", "*.js", "*.md"],
"color_scheme": "Packages/Review Myself/ReviewMyself-NeonDark.hidden-tmTheme",
"auto_show_context": true
}
To tweak them, go to Preferences -> Package Settings -> Review Myself -> Settings - User, ST will open a user setting file for you, put your settings there and save it.
How to take a todo ?
Simple as this:
TODO: the highest priority todo, should be done right now #p1
TODO: when p1 todos are clear, this will be a p1 #p2
TODO: another p1 candidate todo #p2
TODO: take a look in the tomorrow morning, it's ok :D #p3
By default, ReviewMyself only supports priority number from 1 to 3. I don't think we need more than that, but you can customize it (just increment the number in the priority pattern).
How to list todos ?
To list todos in the current file:
Ctrl + Shift + P, then enter command: ReviewMyself: Current File
To list todos in a file or a folder in side bar:
Right click on the file or the folder, then choose ReviewMyself
To list todos in the current Sublime Text project:
Ctrl + Shift + P, then enter command: ReviewMyself: Folders in Project
Tweak the color scheme
Download the default color scheme file.
Tweak then put it in your User folder. Color Highlighter will help you tweak color easily.
Add this line to your Review Myself user setting file (Preferences -> Package Settings -> Review Myself -> Settings - User):
{
"color_scheme": "Packages/User/ReviewMyself-NeonDark.hidden-tmTheme"
}
Get involved ?
If you meet any issue, please post here: https://github.com/thenewvu/SublimeReviewMyself/issues
If you want to fork or contribute: https://github.com/thenewvu/SublimeReviewMyself/
If you want to buy some coffee for me: https://www.gittip.com/thenewvu/
References
- This is a fork from TodoReview by jonathandelgado.
- GetBasenameFromPath function come from http://stackoverflow.com/questions/8384737/python-extract-file-name-from-path-no-matter-what-the-os-path-format
- Color scheme is based on Theme - Farzher by farzher
- Many other sources