Hi 

Suppose I have 
* Overview
#+COLUMNS: %TIMESTAMP %25ITEM 

** Introduction :StatNum:
 <2019-01-29 Tue> 
** Theory of everything :StatNum:
<2019-01-31 Thu>                                                 


Then org-insert-dblock inserts (using column view)
#+BEGIN: columnview :hlines 1 :id local
| TIMESTAMP    | ITEM                 |
|--------------+----------------------|
|              | Overview             |
| <2019-01-29 Tue> | Introduction         |
| <2019-01-31 Thu> | Theory of everything |
#+END:

Which is precisely what I want.

However I'd prefer to have the time stamp in the item title and the
phrase below such as:




* Overview 2
#+COLUMNS: %TIMESTAMP %25ITEM 

**  <2019-01-29 Tue> :StatNum:
Introduction 
** <2019-01-31 Thu>                                                 
Theory of everything :StatNum:


But then org-insert-dblock produces
#+COLUMNS: %TIMESTAMP %25ITEM 
#+BEGIN: columnview :hlines 1 :id local
| TIMESTAMP    | ITEM         |
|--------------+--------------|
|              | Overview 2   |
| <2019-01-29 Tue> | <2019-01-29 Tue> |
| <2019-01-31 Thu> | <2019-01-31 Thu> |
#+END:

Which is not what I want. 

Is there any way to configure org-insert-dblock the way I want?

Regards

Uwe Brauer 


Reply via email to