From cd78a4a1fe4ebf47575abbefe635db6d7b9ff989 Mon Sep 17 00:00:00 2001 From: Tom van Ommeren Date: Fri, 23 Oct 2015 00:59:03 +0200 Subject: [PATCH] use ctrl+shift on OS-X to avoid masking default ctrl+e and ctrl+d --- Keymaps/Default (OSX).sublime-keymap | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Keymaps/Default (OSX).sublime-keymap b/Keymaps/Default (OSX).sublime-keymap index 2ab415b..8673e5e 100644 --- a/Keymaps/Default (OSX).sublime-keymap +++ b/Keymaps/Default (OSX).sublime-keymap @@ -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"} ] }