Skip to content

Commit

Permalink
Merge pull request #24 from tomv564/change_osx_keymappings
Browse files Browse the repository at this point in the history
use ctrl+shift on OS-X to avoid masking default ctrl+e and ctrl+d
  • Loading branch information
tomv564 committed Oct 22, 2015
2 parents 036f4d9 + cd78a4a commit 4a20e45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Keymaps/Default (OSX).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[

{ "keys": ["ctrl+e"], "command": "show_panel", "args": {"panel": "output.hide_errors"} },
{ "keys": ["ctrl+i"], "command": "show_hs_info_at_cursor", "context": [
{ "keys": ["ctrl+shift+e"], "command": "show_panel", "args": {"panel": "output.hide_errors"} },
{ "keys": ["ctrl+shift+i"], "command": "show_hs_info_at_cursor", "context": [
{"key": "selector", "operator": "equal", "operand": "source.haskell"}
]
}
, { "keys": ["ctrl+d"], "command": "goto_definition_at_cursor", "context": [
, { "keys": ["ctrl+shift+d"], "command": "goto_definition_at_cursor", "context": [
{"key": "selector", "operator": "equal", "operand": "source.haskell"}
]
}
Expand Down

0 comments on commit 4a20e45

Please sign in to comment.