Skip to content

Commit

Permalink
Release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Delgado committed Sep 30, 2014
1 parent 4fd3b97 commit 5751240
Show file tree
Hide file tree
Showing 16 changed files with 475 additions and 565 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
node_modules
gulpfile.js
package.json
*.sublime-project
*.sublime-workspace
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
- Doc: New features
- Doc: Outlined arguments (#63)
- Add: `patterns_weight` option (#58)
- Add: `render_max_spaces` option (#59)
- Add: `render_maxspaces` option (#59)
- Del: `render_spaces` in favor of maxspaces (#59)
- Add: `render_header_date` option
- Add: `render_header_format` option
Expand Down
8 changes: 0 additions & 8 deletions Default (Linux).sublime-mousemap

This file was deleted.

73 changes: 0 additions & 73 deletions Default (OSX).sublime-keymap

This file was deleted.

8 changes: 0 additions & 8 deletions Default (OSX).sublime-mousemap

This file was deleted.

73 changes: 0 additions & 73 deletions Default (Windows).sublime-keymap

This file was deleted.

8 changes: 0 additions & 8 deletions Default (Windows).sublime-mousemap

This file was deleted.

18 changes: 9 additions & 9 deletions Default.sublime-commands
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[
{
"caption": "TodoReview: Project Files",
"command": "todo_review"
},
{
"caption": "TodoReview: Project and Open Files",
"command": "todo_review",
"args": { "open_files": true }
}
{
"caption": "TodoReview: Project Files",
"command": "todo_review"
},
{
"caption": "TodoReview: Project and Open Files",
"command": "todo_review",
"args": { "open_files": true }
}
]
34 changes: 18 additions & 16 deletions Default (Linux).sublime-keymap → Default.sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,73 +1,75 @@
[

{
"keys": ["down"], "command": "navigate_results",
"keys": ["down"], "command": "todo_review_results",
"context": [
{"key": "setting.command_mode", "operand": true},
{"key": "setting.todo_results"}
],
"args": {"direction": "forward"}
"args": {"direction": "down"}
},

{
"keys": ["j"], "command": "navigate_results",
"keys": ["j"], "command": "todo_review_results",
"context": [
{"key": "setting.command_mode", "operand": true},
{"key": "setting.todo_results"}
],
"args": {"direction": "forward"}
"args": {"direction": "down"}
},

{
"keys": ["pagedown"], "command": "navigate_results",
"keys": ["pagedown"], "command": "todo_review_results",
"context": [
{"key": "setting.command_mode", "operand": true},
{"key": "setting.todo_results"}
],
"args": {"direction": "forward_skip"}
"args": {"direction": "down_skip"}
},

{
"keys": ["up"], "command": "navigate_results",
"keys": ["up"], "command": "todo_review_results",
"context": [
{"key": "setting.command_mode", "operand": true},
{"key": "setting.todo_results"}
],
"args": {"direction": "backward"}
"args": {"direction": "up"}
},

{
"keys": ["k"], "command": "navigate_results",
"keys": ["k"], "command": "todo_review_results",
"context": [
{"key": "setting.command_mode", "operand": true},
{"key": "setting.todo_results"}
],
"args": {"direction": "backward"}
"args": {"direction": "up"}
},

{
"keys": ["pageup"], "command": "navigate_results",
"keys": ["pageup"], "command": "todo_review_results",
"context": [
{"key": "setting.command_mode", "operand": true},
{"key": "setting.todo_results"}
],
"args": {"direction": "backward_skip"}
"args": {"direction": "up_skip"}
},

{
"keys": ["c"], "command": "clear_selection",
"keys": ["enter"], "command": "todo_review_results",
"context": [
{"key": "setting.command_mode", "operand": true},
{"key": "setting.todo_results"}
]
],
"args": {"open": true}
},

{
"keys": ["enter"], "command": "goto_comment",
"keys": ["r"], "command": "todo_review_results",
"context": [
{"key": "setting.command_mode", "operand": true},
{"key": "setting.todo_results"}
]
],
"args": {"refresh": true}
}

]
38 changes: 2 additions & 36 deletions Main.sublime-menu
Original file line number Diff line number Diff line change
Expand Up @@ -26,50 +26,16 @@
{
"command": "open_file",
"args": {
"file": "${packages}/TodoReview/Default (OSX).sublime-keymap",
"platform": "OSX"
"file": "${packages}/TodoReview/Default.sublime-keymap"
},
"caption": "Key Bindings – Default"
},
{
"command": "open_file",
"args": {
"file": "${packages}/TodoReview/Default (Linux).sublime-keymap",
"platform": "Linux"
"file": "${packages}/TodoReview/Default.sublime-mousemap"
},
"caption": "Key Bindings – Default"
},
{
"command": "open_file",
"args": {
"file": "${packages}/TodoReview/Default (Windows).sublime-keymap",
"platform": "Windows"
},
"caption": "Key Bindings – Default"
},
{
"command": "open_file",
"args": {
"file": "${packages}/User/Default (OSX).sublime-keymap",
"platform": "OSX"
},
"caption": "Key Bindings – User"
},
{
"command": "open_file",
"args": {
"file": "${packages}/User/Default (Linux).sublime-keymap",
"platform": "Linux"
},
"caption": "Key Bindings – User"
},
{
"command": "open_file",
"args": {
"file": "${packages}/User/Default (Windows).sublime-keymap",
"platform": "Windows"
},
"caption": "Key Bindings – User"
}
]
}
Expand Down
Loading

0 comments on commit 5751240

Please sign in to comment.