Am 30.09.2013 20:30, schrieb Michael Brand:
As soon as I remembered that there are org-table-cut-region and
org-table-paste-rectangle I could not resist the mental exercise for
fun to implement f-org-table-open-field-in-row-grow and
f-org-table-open-field-in-column-grow. The latter gets you from
| a | b | c |
|---+----+---|
| d | 9 | e |
| f | 10 | g |
|---+----+---|
| h | 11 | i |
to
| a | b | c |
|---+----+---|
| d | | e |
| f | 9 | g |
|---+----+---|
| h | 10 | i |
| | 11 | |
Arguably the expected outcome might be
| a | b | c |
|---+----+---|
| d | | e |
| f | 9 | g |
| | 10 | |
|---+----+---|
| h | 11 | i |
Regards,
Achim.