View | Details | Raw Unified | Return to bug 66259 | Differences between
and this patch

Collapse All | Expand All

(-)plugin.properties (+5 lines)
Lines 13-15 Link Here
13
13
14
Views.PropertySheet = Properties
14
Views.PropertySheet = Properties
15
Views.ContentOutline = Outline
15
Views.ContentOutline = Outline
16
17
ViewCommand.propertySheet.name= Properties
18
ViewCommand.propertySheet.description= Show the Properties view
19
ViewCommand.contentOutline.name= Outline
20
ViewCommand.contentOutline.description= Show the Outline view
(-)plugin.xml (+42 lines)
Lines 38-41 Link Here
38
      </view>
38
      </view>
39
   </extension>
39
   </extension>
40
40
41
   <extension
42
         point="org.eclipse.ui.commands">
43
      <command
44
            name="%ViewCommand.propertySheet.name"
45
            description="%ViewCommand.propertySheet.description"
46
            category="org.eclipse.ui.category.views"
47
            id="org.eclipse.ui.views.PropertySheet">
48
      </command>
49
      <keyBinding
50
            string=""
51
            scope="org.eclipse.ui.globalScope"
52
            command="org.eclipse.ui.views.PropertySheet"
53
            configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
54
      </keyBinding>
55
      <command
56
            name="%ViewCommand.contentOutline.name"
57
            description="%ViewCommand.contentOutline.description"
58
            category="org.eclipse.ui.category.views"
59
            id="org.eclipse.ui.views.ContentOutline">
60
      </command>
61
      <keyBinding
62
            string="Alt+Shift+Q O"
63
            scope="org.eclipse.ui.globalScope"
64
            command="org.eclipse.ui.views.ContentOutline"
65
            configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
66
      </keyBinding>
67
      <keyBinding
68
            platform="carbon"
69
            string="Alt+Shift+Q O"
70
            scope="org.eclipse.ui.globalScope"
71
            command=""
72
            configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
73
      </keyBinding>
74
      <keyBinding
75
            platform="carbon"
76
            string="Command+Alt+Q O"
77
            scope="org.eclipse.ui.globalScope"
78
            command="org.eclipse.ui.views.ContentOutline"
79
            configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
80
      </keyBinding>
81
   </extension>
82
   
41
</plugin>
83
</plugin>

Return to bug 66259