1 Commits
v0.8 ... v0.7.6

Author SHA1 Message Date
David Beniamine
5287e928fc Integrating sietse's work, version 0.7.6 2017-09-10 11:52:41 +02:00
3 changed files with 14 additions and 13 deletions

View File

@@ -28,9 +28,10 @@
## Release notes ## Release notes
v0.7.5 Incorporates [Fievel's work](https://github.com/fievel/todo.txt-vim/commit/0863e1434e9a89ace06c4856b6cb32ba9906e3de) to make overduedates work on python3. I have no version of vim with python3 thus it is only tested on his side, do not hesitate to report issues. + 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.4 includes the overduedate support from Guilherme Victal (see pull
v0.7.4 includes the overduedate support from Guilherme Victal (see pull
[request #45 on freitass version](https://github.com/freitass/todo.txt-vim/pull/45)), [request #45 on freitass version](https://github.com/freitass/todo.txt-vim/pull/45)),
it highlight dates in overdue tasks as an Error. It depends on a it highlight dates in overdue tasks as an Error. It depends on a
Python library, however, and as such will only be able to work if your version Python library, however, and as such will only be able to work if your version
@@ -39,8 +40,7 @@ of Vim was compiled with the `+python` option (as most common versions do).
If your Vim installation does **not** have Python support, this plugin **will work just fine** but this feature will be disabled. If your Vim installation does **not** have Python support, this plugin **will work just fine** but this feature will be disabled.
Since v0.7.3, `TodoComplete` is replaced by `todo#Complete`, you might need to + Since v0.7.3, `TodoComplete` is replaced by `todo#Complete`, you might need to update your vimrc (see [completion](#completion)).
update your vimrc (see [completion](#completion)).
## Introduction ## Introduction

View File

@@ -31,10 +31,11 @@ Table of Contents *TodoTxt-Contents* ~
=============================================================================== ===============================================================================
1. Release notes *TodoTxt-ReleaseNotes* ~ 1. Release notes *TodoTxt-ReleaseNotes* ~
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
(https://github.com/fievel/todo.txt-vim/commit/0863e1434e9a89ace06c4856b6cb32ba9906e3de) (https://github.com/fievel/todo.txt-vim/commit/0863e1434e9a89ace06c4856b6cb32ba9906e3de)
to make overduedates work on python3. I have no version of vim with python3 to make overduedates work on python3.
thus it is only tested on his side, do not hesitate to report issues.
v0.7.4 includes the overduedate support from Guilherme Victal (see pull v0.7.4 includes the overduedate support from Guilherme Victal (see pull
request #45 on freitass version (https://github.com/freitass/todo.txt-vim/pull/45)), request #45 on freitass version (https://github.com/freitass/todo.txt-vim/pull/45)),

View File

@@ -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.5 let g:Todo_txt_loaded=0.7.6
endif endif
" General options {{{1 " General options {{{1