mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
2004-12-03 Alain Magloire
Implement comment blocks(Code take from JDT Editor) * src/org/eclipse/cdt/internal/ui/action/AddBlockCommentAction.java * src/org/eclipse/cdt/internal/ui/action/BlockCommentAction.java * src/org/eclipse/cdt/internal/ui/action/RemoveBlockCommentAction.java * src/org/eclipse/cdt/internal/ui/editor/CEditor.java * src/org/eclipse/cdt/internal/ui/editor/CEditorMessages.properties * src/org/eclipse/cdt/internal/ui/editor/ICEditorActionDefinitionIds.java * src/org/eclipse/cdt/internal/ui/text/ CPartitionScanner.java * src/org/eclipse/cdt/internal/ui/text/CTextTools.java * src/org/eclipse/cdt/internal/ui/text/FastCPartitionScanner.java * src/org/eclipse/cdt/internal/ui/text/ICPartitions.java * plugin.xml
This commit is contained in:
parent
a71c47c4e8
commit
fd68874052
1 changed files with 10 additions and 0 deletions
|
@ -23,6 +23,10 @@ perspective.name=C/C++
|
|||
viewsCategory.name=&C
|
||||
CView.name=C/C++ Projects
|
||||
|
||||
AddBlockCommentAction.label= Add &Block Comment
|
||||
|
||||
RemoveBlockCommentAction.label= Remove Bloc&k Comment
|
||||
|
||||
# The Wizards
|
||||
# C
|
||||
newCWizardsCategory.name=C
|
||||
|
@ -89,6 +93,12 @@ ActionDefinition.finddecl.description= Find Declaration
|
|||
ActionDefinition.findrefs.name= Find References
|
||||
ActionDefinition.findrefs.description= Find References
|
||||
|
||||
ActionDefinition.addBlockComment.name= Add Block Comment
|
||||
ActionDefinition.addBlockComment.description= Enclose the selection with a block comment
|
||||
|
||||
ActionDefinition.removeBlockComment.name= Remove Block Comment
|
||||
ActionDefinition.removeBlockComment.description= Remove the block comment enclosing the selection
|
||||
|
||||
ActionDefinition.format.name=Format
|
||||
ActionDefinition.format.description=Format Source Code
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue