- TW-266 Allow project auto-completion to search completed tasks (thanks to
         Kosta Harlan).
This commit is contained in:
Paul Beckingham 2014-06-24 23:19:50 -04:00
parent d29b6d5631
commit 525f3cda75
5 changed files with 3 additions and 8 deletions

View file

@ -45,6 +45,8 @@
- TW-255 'Mask' instead of 'iMask' shown in info report (thanks to Benjamin - TW-255 'Mask' instead of 'iMask' shown in info report (thanks to Benjamin
Weber) Weber)
- TW-261 Easy to create "not deletable" task (thanks to Jan Kunder). - TW-261 Easy to create "not deletable" task (thanks to Jan Kunder).
- TW-266 Allow project auto-completion to search completed tasks (thanks to
Kosta Harlan).
- TW-271 Parser still looks for task id even when -- is used (thanks to Jim B). - TW-271 Parser still looks for task id even when -- is used (thanks to Jim B).
- TW-277 Complex filters can skip infix term expansion. - TW-277 Complex filters can skip infix term expansion.
- TW-278 Cygwin throws warnings building mk_wcwidth() in wcwidth6.c. - TW-278 Cygwin throws warnings building mk_wcwidth() in wcwidth6.c.

1
NEWS
View file

@ -42,6 +42,7 @@ Removed features in 2.4.0
- Removed the obsolete 'tasksh.1' man page. - Removed the obsolete 'tasksh.1' man page.
- Removed the 'tasksh' program from the Taskwarrior distribution. It is now - Removed the 'tasksh' program from the Taskwarrior distribution. It is now
a separate project. a separate project.
- Removed the 'complete.all.projects' setting that was not used.
Known Issues Known Issues

View file

@ -313,12 +313,6 @@ started or completed that is not considered high priority. Default value is:
You have more urgent tasks. It is a gentle reminder that you are contradicting You have more urgent tasks. It is a gentle reminder that you are contradicting
your own priority settings. your own priority settings.
.TP
.B complete.all.projects=yes
May be yes or no, and determines whether the tab completion scripts consider all
the project names you have used, or just the ones used in active tasks. The
default value is "no".
.TP .TP
.B list.all.projects=yes .B list.all.projects=yes
May be yes or no, and determines whether the 'projects' command lists all the project May be yes or no, and determines whether the 'projects' command lists all the project

View file

@ -285,7 +285,6 @@ std::string Config::_defaults =
"default.command=next # When no arguments are specified\n" "default.command=next # When no arguments are specified\n"
"\n" "\n"
"_forcecolor=no # Forces color to be on, even for non TTY output\n" "_forcecolor=no # Forces color to be on, even for non TTY output\n"
"complete.all.projects=no # Include old project names in '_projects' command\n"
"complete.all.tags=no # Include old tag names in '_ags' command\n" "complete.all.tags=no # Include old tag names in '_ags' command\n"
"list.all.projects=no # Include old project names in 'projects' command\n" "list.all.projects=no # Include old project names in 'projects' command\n"
"list.all.tags=no # Include old tag names in 'tags' command\n" "list.all.tags=no # Include old tag names in 'tags' command\n"

View file

@ -122,7 +122,6 @@ int CmdShow::execute (std::string& output)
" color.undo.after" " color.undo.after"
" color.undo.before" " color.undo.before"
" column.padding" " column.padding"
" complete.all.projects"
" complete.all.tags" " complete.all.tags"
" confirmation" " confirmation"
" data.location" " data.location"