mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Fix issue with filter not applied correctly during task _tags
command
Also includes: * Add cmake build directory + Session.vim files to .gitignore list
This commit is contained in:
parent
9c4e0a43a0
commit
4c179a427d
2 changed files with 3 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -8,7 +8,9 @@ src/commands/libcommands.a
|
||||||
src/columns/libcolumns.a
|
src/columns/libcolumns.a
|
||||||
*~
|
*~
|
||||||
.*.swp
|
.*.swp
|
||||||
|
Session.vim
|
||||||
package-config/osx/binary/task
|
package-config/osx/binary/task
|
||||||
|
/build/
|
||||||
CMakeFiles
|
CMakeFiles
|
||||||
CMakeCache.txt
|
CMakeCache.txt
|
||||||
cmake_install.cmake
|
cmake_install.cmake
|
||||||
|
|
|
@ -166,7 +166,7 @@ int CmdCompletionTags::execute (std::string& output)
|
||||||
// Apply filter.
|
// Apply filter.
|
||||||
Filter filter;
|
Filter filter;
|
||||||
std::vector <Task> filtered;
|
std::vector <Task> filtered;
|
||||||
filter.subset (filtered);
|
filter.subset (tasks, filtered);
|
||||||
|
|
||||||
// Scan all the tasks for their tags, building a map using tag
|
// Scan all the tasks for their tags, building a map using tag
|
||||||
// names as keys.
|
// names as keys.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue