///////////////////////////////////////////////////////////////////////////
| 133 | |
| 134 | //////////////////////////////////////////////////////////////////////////////// |
| 135 | CmdCompletionProjects::CmdCompletionProjects() { |
| 136 | _keyword = "_projects"; |
| 137 | _usage = "task <filter> _projects"; |
| 138 | _description = "Shows only a list of all project names used"; |
| 139 | _read_only = true; |
| 140 | _displays_id = false; |
| 141 | _needs_gc = true; |
| 142 | _needs_recur_update = true; |
| 143 | _uses_context = false; |
| 144 | _accepts_filter = true; |
| 145 | _accepts_modifications = false; |
| 146 | _accepts_miscellaneous = false; |
| 147 | _category = Command::Category::internal; |
| 148 | } |
| 149 | |
| 150 | //////////////////////////////////////////////////////////////////////////////// |
| 151 | int CmdCompletionProjects::execute(std::string& output) { |
nothing calls this directly
no outgoing calls
no test coverage detected