Vestion 0.8

Fix and close #14 and #15
Merge PR#13 and PR#16
This commit is contained in:
David Beniamine
2017-09-10 12:07:56 +02:00
parent 6d1d2d035a
commit 71505569c0
3 changed files with 37 additions and 1 deletions

View File

@@ -31,6 +31,11 @@ Table of Contents *TodoTxt-Contents* ~
===============================================================================
1. Release notes *TodoTxt-ReleaseNotes* ~
v0.8 Incorporates Fretep's work on overdue dates (PR#13 and PR#16) witch removes
python dependency, allow to control the cursor position after a sort by todo
(see |TodoTxt-Sort| and/or issue #15) and fixes bug when sorting a file
containing only lines with due:date (issue #14).
v0.7.6 Incorporates [Sietse's work](https://github.com/sietse/todo.txt-vim/commit/57d45200c8b033d31c9191ee0eb0711c801cdb1d) to make cancel and mark as done mapping repeatable using [vim-repeat](https://github.com/tpope/vim-repeat).
v0.7.5 Incorporates Fievel's work
@@ -230,6 +235,19 @@ prevent this behavior, add the following line to your vimrc
`<leader>-sd` : Sort the file by due-date. Entries with a due date appears
sorted by at the beginning of the file, the rest of the file is not modified.
When you sort by due dates, at the end of the sort, your cursor will be placed
at the top of the file. This behavior can be set with the following global
variable :
let g:TodoTxtSortDueDateCursorPos = "top"
Possible values are :
+ `top` (default): The first line of the buffer, i.e. your most outstanding task
+ `lastdue`: The last task with a due:date set
+ `notoverdue`: The first task that is not overdue (requires #13)
+ `bottom`: The last line of the buffer
6.2 Priorities *TodoTxt-Priorities*
`<LocalLeader>j` : Lower the priority of the current line