Is it possible to mark a block and add it as a template to the current file-configuration ?
I would like to write a macro, that just does this, but I did not find any such command.
Creating a Template from Marked Block ?
Unfortunately there is no way to do this 
The best you could do is a macro like this:
This macro will present you with the template dialog but from there you will still need to paste the data into the template field to complete the template.
Cheers Jussi

The best you could do is a macro like this:
Code: Select all
function key_macro()
screen_update_disable()
MarkCopyEx()
OptionsTemplates()
screen_update_enable()
screen_update()
end
key_macro() -- run the macro
Cheers Jussi