Skip to content

Commit

Permalink
Fixed eclipse-theia#5704: changed keybinding for `toggle outline view…
Browse files Browse the repository at this point in the history
…` to avoid conflict

- The keybinding for `toggle outline view` before was in conflict with that of `save as`.
- The patch changed it to `ctrlcmd+shift+i`, as it stays consistent with keybindings for other `toggle xxx` commands, and has no conflict with any other command in Theia & VS Code.

Signed-off-by: fangnx <naxin.fang@ericsson.com>
  • Loading branch information
fangnx committed Jul 15, 2019
1 parent 60dcb33 commit 651abd2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class OutlineViewContribution extends AbstractViewContribution<OutlineVie
rank: 500
},
toggleCommandId: 'outlineView:toggle',
toggleKeybinding: 'ctrlcmd+shift+s'
toggleKeybinding: 'ctrlcmd+shift+i'
});
}

Expand Down

0 comments on commit 651abd2

Please sign in to comment.