Created
November 12, 2012 13:20
-
-
Save JakeGinnivan/4059355 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Window.InputBindings> | |
| <KeyBinding Modifiers="Ctrl" Key="S" Command="{Binding SaveDocumentCommand}" /> | |
| <KeyBinding Modifiers="Ctrl+Shift" Key="S" Command="{Binding SaveAllDocumentsCommand}" /> | |
| <KeyBinding Modifiers="Ctrl" Key="N" Command="{Binding NewDocumentCommand}" /> | |
| <KeyBinding Modifiers="Ctrl+Shift" Key="P" Command="{Binding PublishDocumentCommand}" /> | |
| <KeyBinding Modifiers="Ctrl" Key="O" Command="{Binding OpenDocumentCommand}" /> | |
| <KeyBinding Modifiers="Ctrl+Shift" Key="O" Command="{Binding OpenFromWebCommand}" /> | |
| <KeyBinding Modifiers="Ctrl" Key="W" Command="{Binding CloseDocumentCommand}" /> | |
| <KeyBinding Key="Escape" Command="commands:ShellCommands.Esc" /> | |
| <KeyBinding Key="F" Command="commands:ShellCommands.Search" Modifiers="Control" /> | |
| </Window.InputBindings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment