Commit Graph

33 Commits

Author SHA1 Message Date
fretep
c8092640df Fix for <Leader>x and other minor issues
Fixed a bug in <Leader>x (todo#PrependDate) introduced last commit.
Fixed case sensitivity bug in todo#ToggleMarkAsDone() and todo#UnMarkAsDone()
Fixed errors being reported for repeat#set if vim-repeat plugin is not installed.
Fixed modeline in .vim files to work (only works on first/last 5 lines of file), and made the modelines consistent across all files.
New unit tests for todo#ToggleMarkAsDone()
Minor fixes for README.md and man page
Fix anchoring of RegExp in todo#ToggleMarkAsDone
Fixed a bug in overdue highlighting that resulted in the current date being matched on round dates like the 20th and 30th.
Added more unit tests for overdue date highlighting.
Corrected RegExp anchoring on today date highlighting.
Added a few bash scripts to make running unit tests easier and more reliable, including testing with ignorecase user preference set.
2017-09-20 01:32:59 +10:00
David Beniamine
35810c388d Micro release 2017-09-11 13:34:49 +02:00
David Beniamine
71505569c0 Vestion 0.8
Fix and close #14 and #15
Merge PR#13 and PR#16
2017-09-10 12:13:26 +02:00
David Beniamine
7b9c9815a4 Integrating sietse's work, version 0.7.6 2017-08-15 12:22:21 +02:00
David Beniamine
c2eb67f1a6 Version 0.7.5
No major changes, yet the merge with Fievel's work impacts considerably
the git tree thus a minor version update.
2016-09-05 15:46:52 +02:00
David Beniamine
1cdb39032f Doc updated 2016-05-14 12:15:22 +02:00
David Beniamine
b6d5dc6bb9 Fix issue #6 : typo in the documentation
See https://github.com/dbeniamine/todo.txt-vim/issues/6
2015-12-17 10:56:11 +01:00
David Beniamine
41a75a8f50 FIX issue #2
FIX: hasmapto was use wrongly, there is now a setting to forbid todo-txt.vim to set
mappings.
FIX: There was a bug and MarkAllAsDone
2015-10-25 01:57:29 -02:00
David Beniamine
3089527c71 Documentation re written
Cleaner documentation
2015-09-22 16:59:36 +02:00
David Beniamine
f9715af4a4 move hierarchical sort to auto start
Note: because of this, TodoComplete is now known as todo#Complete, you might
need to update your vimrc.
2015-08-22 18:39:59 +02:00
David Beniamine
9f87eec204 More flexible file naming (Request #2)
CHG: More flexible file naming files matching one of the following are todo
files:
    YYYY-MM-[Tt]odo.txt
    YYYY-MM-DD[Tt]odo.txt
    [Tt]odo-YYYY-MM.txt
    [Tt]odo-YYYY-MM-DD.txt
    [Tt]odo.txt
    [Tt]oday.txt
    YYYY-MM-[Dd]one.txt
    YYYY-MM-DD[Dd]one.txt
    [Dd]one-YYYY-MM.txt
    [Dd]one-YYYY-MM-DD.txt
    [Dd]one.txt
    [Dd]one-[Tt]oday.txt
 Moreover, remove complete tasks (<LocalLeader>D) moves the task to the
 done.txt file corresponding to the current todo.txt, aka if you are editing
 2015-07-07-todo.txt, the done file while be 2015-07-07-done.txt.
 This behaviour can be cancelled by fixing the done filename using
 g:TodoTxtForceDoneName
FIX: Bug while completing empty file
2015-07-08 09:48:12 +02:00
David Beniamine
4da3c4ae12 Small bug fixes
FIX: Typo in sort function
FIX: Keyword completion
CHG: Sort done.txt by completion date
2015-07-05 16:41:58 +02:00
David Beniamine
73ba0effca Small improvements on due dates + key:value
ADD: syntax highlight for couples key:value
ADD: Handle DUE:date
CHG: No space between due: and date
CHG: Doc updated
2015-07-05 15:00:07 +02:00
David Beniamine
e49cc7d595 Incorporated due date workaround from durcheinandr 2015-07-05 12:29:02 +02:00
David Beniamine
7bca6726ea Recommand buffer mapping for completion 2015-06-12 15:24:23 +02:00
David Beniamine
3c39283066 More doc plus version number updated 2015-06-10 02:12:06 +02:00
durcheinandr
1b49ec094c here we go 2015-05-25 23:57:26 +02:00
David Beniamine
3702e6097c updated doc 2015-05-19 23:12:18 +02:00
David Beniamine
526727ea54 typos fix on doc 2015-03-25 21:35:44 -03:00
David Beniamine
d3d06926a6 Add: Completion for todo.txt
Intelligent complete for context and projects, try it ;)
2015-03-12 21:07:46 -03:00
David Beniamine
8aafdc825e Merge branch 'master' of https://github.com/freitass/todo.txt-vim
Add new features from freitass master such as increase/decreas priority,
another multilvel sort from @matjon and the done.txt file.

Conflicts:
	README.markdown
	doc/todo.txt
2015-02-01 20:54:07 +01:00
David Beniamine
1861e4bf83 Toggle mark documentation 2014-11-17 18:14:58 +01:00
Leandro Freitas
4723d48cae Merge pull request #24 from invecup/priorities
Fix documentation and README typos
2014-11-01 21:41:39 -02:00
Leandro Freitas
635de6dca0 Resolves #17 2014-11-01 21:39:09 -02:00
Stephan Rodemeier
ddd8c61a54 Fix documentation and README typos
The commands for adding priorities B and C got switched up in the
documentation and README.
2014-11-01 23:09:01 +01:00
Leandro Freitas
2a66ed26ff Updated documentation and minor fixes. 2014-11-01 19:44:07 -02:00
Stephan Rodemeier
4fb5384014 Add new functions to documentation
The sorting functions for projects and contexts as well as the functions
for lowering and increasing priority are missing from the documentation.
2014-11-01 20:27:47 +01:00
David Beniamine
724d5b8d70 Doc updated 2014-10-10 18:12:14 +02:00
David Beniamine
62c8949881 ADD: Two level sort function
This commit add the first interesting difference from freitass original
version. It provides a two level sort function which allow the user to sort
the todo by project (or context) then by priority.

TODO: Maybe think about three level sort (project, context, priority) in any
order.
2014-10-09 16:16:46 +02:00
Leandro Freitas
45aa73bf5e Fixes #14. Also changes some shortcuts 2014-04-27 21:26:58 -03:00
Leandro Freitas
d1aaeff366 Added shortcut to mark all tasks as done 2014-04-27 10:54:27 -03:00
Olivier Bilodeau
a2faa2ebc9 added vim doc and instructions to rebuild help tags 2013-11-25 14:00:00 -05:00
Leandro Freitas
6579464545 Initial commit 2011-05-31 13:13:18 -03:00