diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2014-08-06 10:14:03 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2014-08-06 12:08:14 +0200 |
commit | 1878b7c4b053f6f2600d3edd84227d7e505f9e37 (patch) | |
tree | cbb928e0017f91f1d211ebd531a467be766b1267 /src/calcurse.c | |
parent | 86553f35feea67f0ac70018ccfde1903106b4c4d (diff) | |
download | calcurse-1878b7c4b053f6f2600d3edd84227d7e505f9e37.zip |
Allow for filtering TODO items
The item filters now apply to both appointments and TODO items. Also,
add a new type mask "todo" and the following new filter options:
* --filter-priority
* --filter-completed
* --filter-uncompleted
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/calcurse.c')
-rw-r--r-- | src/calcurse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/calcurse.c b/src/calcurse.c index 242a142..0d78000 100644 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -332,7 +332,7 @@ static inline void key_generic_reload(void) recur_event_llist_init(); todo_init_list(); - io_load_todo(); + io_load_todo(NULL); io_load_app(NULL); io_unset_modified(); ui_todo_load_items(); @@ -683,7 +683,7 @@ int main(int argc, char **argv) config_load(); wins_erase_status_bar(); io_load_keys(conf.pager); - io_load_todo(); + io_load_todo(NULL); io_load_app(NULL); io_unset_modified(); wins_slctd_set(conf.default_panel); |