Skip to content

Commit

Permalink
Put older versions of cut/copy/paste shortcuts first
Browse files Browse the repository at this point in the history
So the common ones, ctrl-c/v/x are displayed in the context menu

Closes atom#5989
  • Loading branch information
kevinsawicki committed Jul 21, 2015
1 parent 2c37294 commit 316f393
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions keymaps/win32.cson
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,19 @@
'ctrl-z': 'core:undo'
'ctrl-shift-z': 'core:redo'
'ctrl-y': 'core:redo'
'shift-delete': 'core:cut'
'ctrl-insert': 'core:copy'
'shift-insert': 'core:paste'
'ctrl-x': 'core:cut'
'ctrl-c': 'core:copy'
'ctrl-v': 'core:paste'
'ctrl-insert': 'core:copy'
'shift-insert': 'core:paste'
'shift-up': 'core:select-up'
'shift-down': 'core:select-down'
'shift-left': 'core:select-left'
'shift-right': 'core:select-right'
'shift-pageup': 'core:select-page-up'
'shift-pagedown': 'core:select-page-down'
'delete': 'core:delete'
'shift-delete': 'core:cut'
'pageup': 'core:page-up'
'pagedown': 'core:page-down'
'backspace': 'core:backspace'
Expand Down

0 comments on commit 316f393

Please sign in to comment.