mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
TW-266
- TW-266 Allow project auto-completion to search completed tasks (thanks to Kosta Harlan).
This commit is contained in:
parent
d29b6d5631
commit
525f3cda75
5 changed files with 3 additions and 8 deletions
|
@ -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
1
NEWS
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue