Two suggestions:
1. Save heading name template to prefs
File: dialog.py
Is:
Code:
prefs['add_chapter_template'] = 'Chapter'
Change to:
Code:
if options.SINGLE_FILE_SELECTED == False:
if options.SUFFIX_CHOICE == '':
prefs['add_chapter_template'] = 'Chapter'
else:
prefs['add_chapter_template'] = options.SUFFIX_CHOICE
2. Ignore template if "Use numbered headings only" is enabled
(Perhaps I do not understand this option, but if
... numbered ... only – ignoring is a good idea.)
File: cutils.py (approx. 250 line, before the first use of SUFFIX_CHOICE).
Code:
if options.NUM_HEADINGS_CHOICE == 'Yes':
options.SUFFIX_CHOICE = ''