Bug 232034

Summary: [nls tooling] Properties File editor: allow to sort by key name
Product: [Eclipse Project] JDT Reporter: dev2null <dev2null>
Component: TextAssignee: JDT-Text-Inbox <jdt-text-inbox>
Status: ASSIGNED --- QA Contact:
Severity: enhancement    
Priority: P3    
Version: 3.4   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description dev2null CLA 2008-05-14 05:48:54 EDT
It should be possible to sort entries in a properties file based on the key names. 
 Example:
- File before sort
# example file
bar=3
c=1
# comment for abb
abb=5

- File after sort
# example file
# comment for abb
abb=5
bar=3
c=1

I'm not sure how commented vales should be treated. In the example above I kept the first comment block and moved the comment for abb.