Skip to content
This repository has been archived by the owner on Apr 3, 2018. It is now read-only.

Commit

Permalink
LANG: Added support for Quick Outline.
Browse files Browse the repository at this point in the history
Some related refactoring.
  • Loading branch information
bruno-medeiros committed May 13, 2015
1 parent a79a16c commit 0f9eda8
Show file tree
Hide file tree
Showing 43 changed files with 1,609 additions and 219 deletions.
2 changes: 2 additions & 0 deletions plugin_ide.ui/plugin.properties
Expand Up @@ -38,6 +38,8 @@ ToggleCommentAction.description=Toggle Comment
GoToMatchingBracketAction.name=Go to Matching Bracket GoToMatchingBracketAction.name=Go to Matching Bracket
GoToMatchingBracketAction.description=Moves the cursor to the matching bracket GoToMatchingBracketAction.description=Moves the cursor to the matching bracket


QuickOutlineAction.name=Quick Outline
QuickOutlineAction.description=Quick Outline


### Preference pages ------------------------------------------- ### Preference pages -------------------------------------------


Expand Down
13 changes: 13 additions & 0 deletions plugin_ide.ui/plugin.xml
Expand Up @@ -124,6 +124,13 @@
description="%ToggleCommentAction.description" description="%ToggleCommentAction.description"
/> />


<command
categoryId="LANG_PROJECT_ID.ide.ui.commands.Category"
id="LANG_PROJECT_ID.ide.ui.commands.QuickOutline"
name="%QuickOutlineAction.name"
description="%QuickOutlineAction.description"
/>

</extension> </extension>


<extension point="org.eclipse.ui.bindings"> <extension point="org.eclipse.ui.bindings">
Expand Down Expand Up @@ -151,6 +158,12 @@
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration" schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+/"> sequence="M1+/">
</key> </key>
<key
commandId="LANG_PROJECT_ID.ide.ui.commands.QuickOutline"
contextId="LANG_PROJECT_ID.ide.ui.Contexts.Editor"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+O">
</key>
</extension> </extension>


<!-- ________ Menu/UI contributions ________ --> <!-- ________ Menu/UI contributions ________ -->
Expand Down

0 comments on commit 0f9eda8

Please sign in to comment.