Skip to content
This repository has been archived by the owner on Jan 21, 2018. It is now read-only.

Commit

Permalink
Add up/down key bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
robcowie committed Mar 27, 2012
1 parent e1dc9f8 commit 8463fa1
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Default (Linux).sublime-keymap
Expand Up @@ -16,6 +16,15 @@
"args": {"direction": "forward"}
},

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

{
"keys": ["p"], "command": "navigate_results",
"context": [
Expand All @@ -25,6 +34,15 @@
"args": {"direction": "backward"}
},

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

{
"keys": ["c"], "command": "clear_selection",
"context": [
Expand Down
18 changes: 18 additions & 0 deletions Default (OSX).sublime-keymap
Expand Up @@ -16,6 +16,15 @@
"args": {"direction": "forward"}
},

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

{
"keys": ["p"], "command": "navigate_results",
"context": [
Expand All @@ -25,6 +34,15 @@
"args": {"direction": "backward"}
},

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

{
"keys": ["c"], "command": "clear_selection",
"context": [
Expand Down
18 changes: 18 additions & 0 deletions Default (Windows).sublime-keymap
Expand Up @@ -16,6 +16,15 @@
"args": {"direction": "forward"}
},

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

{
"keys": ["p"], "command": "navigate_results",
"context": [
Expand All @@ -25,6 +34,15 @@
"args": {"direction": "backward"}
},

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

{
"keys": ["c"], "command": "clear_selection",
"context": [
Expand Down

0 comments on commit 8463fa1

Please sign in to comment.