Skip to content

Commit

Permalink
Stop using ctrl-alt-letter bindings on Win32 - they conflict on inter…
Browse files Browse the repository at this point in the history
…national keyboards. Changes;

- window:reload is now ctrl-shift-r
- window:run-package-specs is now ctrl-shift-y
- application:add-project-folder is now ctrl-shift-a
- editor:log-cursor-scope is no longer bound by default
  • Loading branch information
damieng committed Nov 16, 2016
1 parent 1e9b026 commit 13e501b
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions keymaps/win32.cson
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
'ctrl-down': 'core:move-down'
'left': 'core:move-left'
'right': 'core:move-right'
'ctrl-alt-r': 'window:reload'
'ctrl-shift-r': 'window:reload'
'ctrl-shift-i': 'window:toggle-dev-tools'
'ctrl-alt-p': 'window:run-package-specs'
'ctrl-shift-y': 'window:run-package-specs'
'ctrl-shift-o': 'application:open-folder'
'ctrl-alt-o': 'application:add-project-folder'
'ctrl-shift-a': 'application:add-project-folder'
'ctrl-shift-left': 'pane:move-item-left'
'ctrl-shift-right': 'pane:move-item-right'
'f11': 'window:toggle-full-screen'
Expand Down Expand Up @@ -78,9 +78,9 @@
'ctrl-k alt-ctrl-w': 'pane:close-other-items' # Atom Specific
'ctrl-k ctrl-p': 'window:focus-previous-pane'
'ctrl-k ctrl-n': 'window:focus-next-pane'
'ctrl-k ctrl-up': 'window:focus-pane-above'
'ctrl-k ctrl-down': 'window:focus-pane-below'
'ctrl-k ctrl-left': 'window:focus-pane-on-left'
'ctrl-k ctrl-up': 'window:focus-pane-above'
'ctrl-k ctrl-down': 'window:focus-pane-below'
'ctrl-k ctrl-left': 'window:focus-pane-on-left'
'ctrl-k ctrl-right': 'window:focus-pane-on-right'
'alt-1': 'pane:show-item-1'
'alt-2': 'pane:show-item-2'
Expand Down Expand Up @@ -113,7 +113,6 @@

# Sublime Parity
'ctrl-a': 'core:select-all'
'ctrl-alt-shift-p': 'editor:log-cursor-scope'
'ctrl-k ctrl-u': 'editor:upper-case'
'ctrl-k ctrl-l': 'editor:lower-case'
'ctrl-l': 'editor:select-line'
Expand Down

0 comments on commit 13e501b

Please sign in to comment.