We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a4cf09 commit b27feabCopy full SHA for b27feab
ftplugin/orgmode/plugins/Agenda.py
@@ -261,7 +261,7 @@ def list_timeline(cls):
261
# format text of agenda
262
final_agenda = []
263
for i, h in enumerate(raw_agenda):
264
- tmp = fmt.format('{} {}', h.todo, h.title)
+ tmp = fmt.format('{} {}', h.todo, h.title).lstrip().rstrip()
265
final_agenda.append(tmp)
266
cls.line2doc[len(final_agenda)] = (get_bufname(h.document.bufnr), h.document.bufnr, h.start)
267
0 commit comments