blakesweeney / unite-taskwarrior

A unite.vim interface to taskwarrior
6 stars 2 forks source link

filter config not filtering #13

Closed linuxcaffe closed 9 years ago

linuxcaffe commented 9 years ago

In my .vimrc

let g:unite_taskwarrior_filter = 'status.not:deleted and status.not:completed'

:Unite taskwarrior still shows completed and deleted tasks

blakesweeney commented 9 years ago

Try doing:

let g:unite_taskwarrior_filter = ['status.not:deleted',  'status.not:completed']

I ran in to some problems with quoting I think and found having an array for each term works more reliably. If that's not it I'll look some more.

linuxcaffe commented 9 years ago

bing! that does it!