Skip to content

Commit

Permalink
Merge branch 'master' of github.com:bizoo/SmartCursor
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominique Wahli committed Nov 26, 2013
2 parents 943bce7 + 8ef432d commit 8e67ebf
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions Example.sublime-keymap
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,30 @@
{ "keys": ["alt+up"], "command": "smart_cursor", "args": {"cmd": "move", "by": "lines", "forward": false}, "context":
[
{ "key": "auto_complete_visible", "operator": "equal", "operand": false },
{ "key": "setting.command_mode", "operand": false }
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operator": "equal", "operand": false }
]
},
{ "keys": ["alt+down"], "command": "smart_cursor", "args": {"cmd": "move", "by": "lines", "forward": true}, "context":
[
{ "key": "auto_complete_visible", "operator": "equal", "operand": false },
{ "key": "setting.command_mode", "operand": false }
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operator": "equal", "operand": false }
]
},
// Replace standard up/down with SmartCursor
{ "keys": ["up"], "command": "smart_cursor", "args": {"cmd": "move", "by": "lines", "forward": false}, "context":
[
{ "key": "auto_complete_visible", "operator": "equal", "operand": false },
{ "key": "setting.command_mode", "operand": false }
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operator": "equal", "operand": false }
]
},
{ "keys": ["down"], "command": "smart_cursor", "args": {"cmd": "move", "by": "lines", "forward": true}, "context":
[
{ "key": "auto_complete_visible", "operator": "equal", "operand": false },
{ "key": "setting.command_mode", "operand": false }
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operator": "equal", "operand": false }
]
}
]
]

0 comments on commit 8e67ebf

Please sign in to comment.