~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Ide/ExtensionModel/Commands.addin.xml

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
                        _description = "Convert the selected text to lowercase" 
112
112
                        _label = "_Lowercase Selection" />
113
113
        <Command id = "MonoDevelop.Ide.Commands.EditCommands.RemoveTrailingWhiteSpaces"
114
 
                        description = "Remove trailing white spaces" 
115
 
                        _label = "_Remove trailing white spaces" />
 
114
                        description = "Remove trailing whitespace"
 
115
                        _label = "_Remove trailing whitespace" />
116
116
        <Command id = "MonoDevelop.Ide.Commands.EditCommands.JoinWithNextLine"
117
117
                        shortcut = "Control|Shift|J"
118
118
                        _description = "Join the current line with the next line" 
151
151
        <Command id = "MonoDevelop.Ide.Commands.EditCommands.ToggleFolding"
152
152
                        _label = "_Toggle Fold" 
153
153
                        shortcut = "Control|Shift|M"
154
 
                        macShortcut = "Control|Meta|Left"
 
154
                        macShortcut = "Alt|Meta|Left"
155
155
                        _description = "Toggles the folding at caret position."/>
156
156
        <Command id = "MonoDevelop.Ide.Commands.EditCommands.ToggleAllFoldings"
157
157
                        _label = "Toggle _All Folds" 
158
158
                        shortcut = "Control|Shift|A"
 
159
                        macShortcut = "Alt|Shift|Meta|Right"
159
160
                        _description = "Toggles all the foldings in the document."/>
160
161
        <Command id = "MonoDevelop.Ide.Commands.EditCommands.FoldDefinitions"
161
 
                        _label = "Show _Definitions Only" 
162
 
                        macShortcut = "Alt|Shift|Meta|Right"
163
 
                        _description = "Folds all method and property bodies."/>
 
162
                        _label = "Toggle _Definitions" 
 
163
                        macShortcut = "Alt|Shift|Meta|Left"
 
164
                        _description = "Toggles foldings of all method and property bodies."/>
164
165
                        
165
166
        <Command id = "MonoDevelop.Ide.CodeFormatting.CodeFormattingCommands.FormatBuffer"
166
167
                        defaultHandler = "MonoDevelop.Ide.CodeFormatting.FormatBufferHandler"
365
366
        <Command id = "MonoDevelop.Ide.Commands.FileCommands.SaveAll"
366
367
                        defaultHandler = "MonoDevelop.Ide.Commands.SaveAllHandler"
367
368
                        icon = "md-save-all-icon" 
 
369
                        shortcut = "Control|Shift|S" 
 
370
                        macShortcut = "Meta|Shift|S"
368
371
                        _description = "Save all open files"
369
372
                        _label = "Save A_ll" />
370
373
        <Command id = "MonoDevelop.Ide.Commands.FileCommands.NewProject" 
379
382
                        _label = "_Workspace..."
380
383
                        _description = "Create a new workspace"/>
381
384
        <Command id = "MonoDevelop.Ide.Commands.FileCommands.CloseFile"
 
385
                        defaultHandler = "MonoDevelop.Ide.Commands.CloseFileHandler"
382
386
                        _label = "_Close File" 
383
387
                        _description = "Close active file"
384
388
                        icon = "gtk-close"
409
413
        <Command id = "MonoDevelop.Ide.Commands.FileCommands.SaveAs"
410
414
                        _label = "Save _As..."
411
415
                        icon = "gtk-save-as"
412
 
                        shortcut = "Control|Shift|S" 
413
 
                        macShortcut = "Meta|Shift|S"
414
416
                        _description = "Save the current file with a different name" />
415
417
        <Command id = "MonoDevelop.Ide.Commands.FileCommands.PrintDocument"
416
418
                        defaultHandler = "MonoDevelop.Ide.Commands.PrintHandler"
541
543
                        defaultHandler = "MonoDevelop.Ide.Commands.ShowNextHandler"
542
544
                        _label = "Show Next" 
543
545
                        _description = "Move cursor to next error or search match"
544
 
                        macShortcut = "Meta|+"
 
546
                        macShortcut = "Alt|Meta|Down"
545
547
                        shortcut = "F4" />
546
548
        <Command id = "MonoDevelop.Ide.Commands.ViewCommands.ShowPrevious"
547
549
                        defaultHandler = "MonoDevelop.Ide.Commands.ShowPreviousHandler"
548
550
                        _label = "Show Previous" 
549
551
                        _description = "Move cursor to previous error or search match"
550
 
                        macShortcut = "Meta|-"
 
552
                        macShortcut = "Alt|Meta|Up"
551
553
                        shortcut = "Shift|F4" />
552
554
        
553
555
        <Command id = "MonoDevelop.Ide.Commands.NavigationCommands.NavigateBack"
555
557
                        icon = "md-navigate-back"
556
558
                        defaultHandler = "MonoDevelop.Ide.Commands.NavigateBack"
557
559
                        shortcut = "Control|Alt|Left"
558
 
                        macShortcut= "Meta|Alt|Left"
 
560
                        macShortcut= "Control|Meta|Left"
559
561
                        _description = "Move to previous point in code navigation history"/>
560
562
        <Command id = "MonoDevelop.Ide.Commands.NavigationCommands.NavigateForward"
561
563
                        _label = "Navigate _Forward"
562
564
                        icon = "md-navigate-forward"
563
565
                        defaultHandler = "MonoDevelop.Ide.Commands.NavigateForward"
564
566
                        shortcut = "Control|Alt|Right"
565
 
                        macShortcut= "Meta|Alt|Right"
 
567
                        macShortcut= "Control|Meta|Right"
566
568
                        _description = "Move to next point in code navigation history"/>
567
569
        <Command id = "MonoDevelop.Ide.Commands.NavigationCommands.NavigateHistory"
568
570
                        type="radio|array" 
579
581
                        _label = "_Zoom In"
580
582
                        icon = "gtk-zoom-in" 
581
583
                        shortcut = "Control|+"
 
584
                        macShortcut = "Meta|+"
582
585
                        _description = "Zooms view in" />
583
586
        <Command id = "MonoDevelop.Ide.Commands.ViewCommands.ZoomOut"
584
587
                        defaultHandler = "MonoDevelop.Ide.Commands.ZoomOut"
585
588
                        _label = "Zoom _Out"
586
589
                        icon = "gtk-zoom-out" 
587
590
                        shortcut = "Control|-"
 
591
                        macShortcut = "Meta|-"
588
592
                        _description = "Zooms view out" />
589
593
        <Command id = "MonoDevelop.Ide.Commands.ViewCommands.ZoomReset"
590
594
                        defaultHandler = "MonoDevelop.Ide.Commands.ZoomReset"
658
662
                        defaultHandler = "MonoDevelop.Ide.Commands.SwitchSplitWindow"
659
663
                        shortcut = "Control|M"
660
664
                        _label = "_Switch Between Splits" />
 
665
                        
661
666
        <Command id = "MonoDevelop.Ide.Commands.WindowCommands.SwitchNextDocument"
662
667
                        defaultHandler = "MonoDevelop.Ide.Commands.SwitchNextDocument"
663
668
                        shortcut = "Control|Tab"
687
692
                        _label = "_Tip of the Day" 
688
693
                        icon = "gtk-dialog-info" 
689
694
                        _description = "Show tip of the day" />
 
695
        <Command id = "MonoDevelop.Ide.Commands.HelpCommands.OpenLogDirectory"
 
696
                        defaultHandler = "MonoDevelop.Ide.Commands.OpenLogDirectoryHandler"
 
697
                        _label = "Open Log Directory" 
 
698
                        icon = "gtk-dialog-info" 
 
699
                        _description = "Opens the directory where the diagnostic logs are stored" />
690
700
        <Command id = "MonoDevelop.Ide.Commands.HelpCommands.About"
691
701
                        defaultHandler = "MonoDevelop.Ide.Commands.AboutHandler"
692
702
                        _label = "_About" 
765
775
                        _description = "Search for and replace text in all files of a directory" />
766
776
        
767
777
        <Command id = "MonoDevelop.Ide.Commands.SearchCommands.GotoType"
768
 
                 defaultHandler = "MonoDevelop.Ide.NavigateToDialog.GotoTypeHandler"
769
778
                 _label = "Go to Type..."
770
 
                 _description = "Jump to the declaration of type in the current workspace"
 
779
                        _description = "Jump to the declaration of type in the current workspace"
771
780
                 shortcut = "Control|Shift|T"
772
781
                 macShortcut = "Meta|Shift|T" />
773
782
        <Command id = "MonoDevelop.Ide.Commands.SearchCommands.GotoFile"
774
 
                        defaultHandler = "MonoDevelop.Ide.NavigateToDialog.GotoFileHandler"
775
783
                        _label = "Go to File..." 
776
784
                        shortcut = "Alt|Shift|O"
777
785
                        macShortcut = "Meta|Shift|D"
778
786
                        _description = "Jump to a file in the current workspace"
779
787
                        icon  = "gtk-open" />
780
 
        
781
 
        <Command id = "MonoDevelop.Ide.NavigateToDialog.Commands.NavigateTo"
782
 
                        defaultHandler = "MonoDevelop.Ide.NavigateToDialog.NavigateToHandler"
 
788
        <Command id = "MonoDevelop.Components.MainToolbar.Commands.NavigateTo"
783
789
                        _label = "Navigate To..." 
784
790
                        _description = "Jump to a item in the current workspace"
785
791
                        shortcut = "Control|,"
837
843
                        _description="Inserts a template or when something is selected surrounds selection with a template"
838
844
                        _label = "I_nsert Template..."/>
839
845
        <Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.LineEnd"
840
 
                        _label = "Go to end of line" />
 
846
                        _label = "Go to end of line" macShortcut = "End"/>
841
847
        <Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.LineStart"
842
 
                        _label = "Go to beginning of line" />
 
848
                        _label = "Go to beginning of line" macShortcut = "Home"/>
843
849
        <Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.DeleteLeftChar"
844
850
                        _label = "Delete left character" />
845
851
        <Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.DeleteRightChar"
918
924
        <Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMoveDown"
919
925
                        _label = "Expand selection to next line" />
920
926
        <Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMoveHome"
921
 
                        _label = "Expand selection to line start" />
 
927
                        _label = "Expand selection to line start" macShortcut = "Shift|Home" />
922
928
        <Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMoveEnd"
923
 
                        _label = "Expand selection to line end" />
 
929
                        _label = "Expand selection to line end" macShortcut = "Shift|End"/>
924
930
        <Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMoveToDocumentStart"
925
931
                        _label = "Expand selection to document start" />
926
932
        <Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMoveToDocumentEnd"