Skip to content
This repository has been archived by the owner on May 31, 2019. It is now read-only.

Commit

Permalink
Changed key bindings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Mahar committed Feb 7, 2013
1 parent 1297d3b commit 1979830
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Default (OSX) .sublime-keymap
@@ -1,5 +1,5 @@
[
{
"keys": ["super+alt+d"], "command": "coffee_goto_definition"
"keys": ["ctrl+alt+d"], "command": "coffee_goto_definition"
}
]
2 changes: 1 addition & 1 deletion Default (OSX).sublime-mousemap
@@ -1,6 +1,6 @@
[
{
"button": "button1", "count": 1, "modifiers": ["super", "alt"],
"button": "button1", "count": 1, "modifiers": ["ctrl", "alt"],
"press_command": "drag_select",
"command": "coffee_goto_definition",
"press_args": {"by": "words"}
Expand Down
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -37,9 +37,9 @@ Example usage: Inside a class, you type `this.` and would like a list of the ava

Looking for where a class, function or variable was defined? Look no further.

Place your cursor on any word and press `ctrl+alt+d` in Windows/Linux, or `cmd+alt+d` in OS X, to goto the definition of the selected class, function or variable.
Place your cursor on any word and press `ctrl+alt+d` in Windows/Linux, and `ctrl+alt+d` in OS X, to goto the definition of the selected class, function or variable.

Alternatively, use `ctrl+alt` + `left click`.
Alternatively, use `ctrl+alt` + `left click` in Windows/Linux, and `ctrl+alt` + `left click` in OS X.

Default Key Bindings
--------------------
Expand All @@ -48,13 +48,13 @@ Default Key Bindings

Autocomplete: `ctrl+space` (after a dot operator)

Goto Definition: `ctrl+alt+d` or `ctrl+alt`+`left click`.
Goto Definition: `ctrl+alt+d` or `ctrl+alt`+`left click`

### Mac OS X:

Autocomplete: `cmd+space` (after a dot operator)
Autocomplete: `ctrl+space` (after a dot operator)

Goto Definition: `cmd+alt+d` or `cmd+alt`+`left click`.
Goto Definition: `ctrl+alt+d` or `ctrl+alt`+`left click`

Configuration
-------------
Expand Down

0 comments on commit 1979830

Please sign in to comment.