Author: Stefan Heimann (mail@stefanheimann.net)

This plugin contains various enhancements of the eclipse text-editor:

* Copy Line (Alt+C): Copies the current line into the clipboard.

* Kill Line (Alt+K): Deletes the current line.

* Insert Line (Alt+I): 
  Inserts a new line after the current line and places the cursor at 
  the beginnig of this line.

* Rectangular Edit(Alt+R):   
  Its often useful to edit rectangular portions of the text. Consider
  the following example:
  
  public final String KEY_1 = "key1";               
  public final String KEY_2 = "key2"; 
  public final String KEY_2 = "key3"; 
  
  You now want to insert the modifier "static" between "public"
  and "final". To do so, you can mark a rectangle with the startpoint 
  and the endpoint of the selection. A rectangular edit replaces
  the content of this rectangle with some string you specify (in
  the example above, the replacement string would be "static ").
  Try it out! It's harder to explain than to use.

* First Char (Alt+m): Jumps to the first visible character in the 
  current line.
  