@@ -28,6 +28,11 @@
|
|||||||
|
|
||||||
## Release notes
|
## Release notes
|
||||||
|
|
||||||
|
+ 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 (sort)[#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.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](https://github.com/fievel/todo.txt-vim/commit/0863e1434e9a89ace06c4856b6cb32ba9906e3de) to make overduedates work on python3.
|
+ v0.7.5 Incorporates [Fievel's work](https://github.com/fievel/todo.txt-vim/commit/0863e1434e9a89ace06c4856b6cb32ba9906e3de) to make overduedates work on python3.
|
||||||
+ v0.7.4 includes the overduedate support from Guilherme Victal (see pull
|
+ v0.7.4 includes the overduedate support from Guilherme Victal (see pull
|
||||||
@@ -215,6 +220,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
|
+ `<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.
|
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
|
||||||
|
|
||||||
### Priorities
|
### Priorities
|
||||||
|
|
||||||
+ `<LocalLeader>j` : Lower the priority of the current line
|
+ `<LocalLeader>j` : Lower the priority of the current line
|
||||||
|
|||||||
18
doc/todo.txt
18
doc/todo.txt
@@ -31,6 +31,11 @@ Table of Contents *TodoTxt-Contents* ~
|
|||||||
===============================================================================
|
===============================================================================
|
||||||
1. Release notes *TodoTxt-ReleaseNotes* ~
|
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.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
|
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
|
`<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.
|
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*
|
6.2 Priorities *TodoTxt-Priorities*
|
||||||
|
|
||||||
`<LocalLeader>j` : Lower the priority of the current line
|
`<LocalLeader>j` : Lower the priority of the current line
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ set cpo&vim
|
|||||||
if exists("g:Todo_txt_loaded")
|
if exists("g:Todo_txt_loaded")
|
||||||
finish
|
finish
|
||||||
else
|
else
|
||||||
let g:Todo_txt_loaded=0.7.6
|
let g:Todo_txt_loaded=0.8
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" General options {{{1
|
" General options {{{1
|
||||||
|
|||||||
Reference in New Issue
Block a user